forked from KANT0S/HearthBuddy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathClass95.cs
48 lines (42 loc) · 994 Bytes
/
Class95.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
namespace ns17
{
using System;
using System.Xml;
internal class Class95 : Class92, Interface10, Interface13
{
private readonly XmlDeclaration xmlDeclaration_0;
public Class95(XmlDeclaration declaration) : base(declaration)
{
this.xmlDeclaration_0 = declaration;
}
public string String_3
{
get
{
return this.xmlDeclaration_0.Version;
}
}
public string String_4
{
get
{
return this.xmlDeclaration_0.Encoding;
}
set
{
this.xmlDeclaration_0.Encoding = value;
}
}
public string String_5
{
get
{
return this.xmlDeclaration_0.Standalone;
}
set
{
this.xmlDeclaration_0.Standalone = value;
}
}
}
}