[msvc] Update csproj files (#4284)
[mono.git] / mcs / tools / pdb2mdb / PdbSource.cs
1 //-----------------------------------------------------------------------------
2 //
3 // Copyright (C) Microsoft Corporation.  All Rights Reserved.
4 //
5 //-----------------------------------------------------------------------------
6 using System;
7
8 namespace Microsoft.Cci.Pdb {
9   internal class PdbSource {
10     internal uint index;
11     internal string name;
12     internal Guid doctype;
13     internal Guid language;
14     internal Guid vendor;
15
16     internal PdbSource(uint index, string name, Guid doctype, Guid language, Guid vendor) {
17       this.index = index;
18       this.name = name;
19       this.doctype = doctype;
20       this.language = language;
21       this.vendor = vendor;
22     }
23   }
24 }