Terraria v1.4.4.9
Terraria source code documentation
All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events Macros
XmlSerializerVersionAttribute.cs
Go to the documentation of this file.
2
5{
6 private string _mvid;
7
8 private string _serializerVersion;
9
10 private string _ns;
11
12 private Type _type;
13
14 public string? ParentAssemblyId
15 {
16 get
17 {
18 return _mvid;
19 }
20 set
21 {
22 _mvid = value;
23 }
24 }
25
26 public string? Version
27 {
28 get
29 {
30 return _serializerVersion;
31 }
32 set
33 {
35 }
36 }
37
38 public string? Namespace
39 {
40 get
41 {
42 return _ns;
43 }
44 set
45 {
46 _ns = value;
47 }
48 }
49
50 public Type? Type
51 {
52 get
53 {
54 return _type;
55 }
56 set
57 {
58 _type = value;
59 }
60 }
61
65
70}