Files
Examples/GerstITS.WebClients.Example.Api/Contracts/Serialization/Country.cs
2021-06-15 10:59:47 +02:00

12 lines
220 B
C#

namespace GerstITS.Examples.WebClients.Examples.Api
{
public class Country
{
#region Properties
public int Id { get; set; }
public string Name { get; set; }
#endregion
}
}