-
Notifications
You must be signed in to change notification settings - Fork 199
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5722218
commit 2bcd1da
Showing
6 changed files
with
163 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System.Xml.Serialization; | ||
|
||
namespace Majorsilence.Reporting.RdlCreator | ||
{ | ||
public class BorderColor | ||
{ | ||
[XmlElement(ElementName = "Bottom")] | ||
public string Bottom { get; set; } | ||
|
||
[XmlElement(ElementName = "Top")] | ||
public string Top { get; set; } | ||
|
||
[XmlElement(ElementName = "Left")] | ||
public string Left { get; set; } | ||
|
||
[XmlElement(ElementName = "Right")] | ||
public string Right { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
using System.Xml.Serialization; | ||
|
||
namespace Majorsilence.Reporting.RdlCreator | ||
{ | ||
public class BorderStyle | ||
{ | ||
[XmlElement(ElementName = "Default")] | ||
public string Default { get; set; } | ||
|
||
[XmlElement(ElementName = "Left")] | ||
public string Left { get; set; } | ||
|
||
[XmlElement(ElementName = "Right")] | ||
public string Right { get; set; } | ||
|
||
[XmlElement(ElementName = "Top")] | ||
public string Top { get; set; } | ||
|
||
[XmlElement(ElementName = "Bottom")] | ||
public string Bottom { get; set; } | ||
|
||
public static class Values | ||
{ | ||
public const string None = "None"; | ||
public const string Solid = "Solid"; | ||
public const string Dashed = "Dashed"; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using System.Xml.Serialization; | ||
|
||
namespace Majorsilence.Reporting.RdlCreator | ||
{ | ||
public class BorderWidth | ||
{ | ||
[XmlElement(ElementName = "Top")] | ||
public string Top { get; set; } | ||
|
||
[XmlElement(ElementName = "Bottom")] | ||
public string Bottom { get; set; } | ||
|
||
[XmlElement(ElementName = "Left")] | ||
public string Left { get; set; } | ||
|
||
[XmlElement(ElementName = "Right")] | ||
public string Right { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters