##// END OF EJS Templates
Added tests for Implab.ServiceHost.Unity configuration loader.
Added tests for Implab.ServiceHost.Unity configuration loader.

File last commit:

r289:95896f882995 v3.0.14 v3
r289:95896f882995 v3.0.14 v3
Show More
Person.cs
19 lines | 427 B | text/x-csharp | CSharpLexer
cin
Added tests for Implab.ServiceHost.Unity configuration loader.
r289 using System.Xml.Serialization;
namespace Implab.ServiceHost.Test.Mock
{
[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; }
}
}