##// END OF EJS Templates
Restored lost JsonXmlCaseTransform from version 2.1
Restored lost JsonXmlCaseTransform from version 2.1

File last commit:

r264:3a6e18c432be v3
r265:74e048cbaac8 v3.0.10 v3
Show More
Person.cs
19 lines | 417 B | text/x-csharp | CSharpLexer
cin
Added XmlToJson xsl transformation....
r264 using System.Xml.Serialization;
namespace Implab.Test.Model {
[XmlRoot(Namespace="urn:implab:test:model")]
public class Person {
public string FirstName { get; set; }
public string LastName { get; set; }
public int Age { get; set; }
[XmlIgnore]
public bool AgeSpecified { get; set; }
[XmlElement("Tag")]
public string[] Tags { get; set; }
}
}