Files
Examples/GerstITS.WebClients.Example.Api/Contracts/Serialization/Customer.cs
T

16 lines
356 B
C#

namespace GerstITS.Examples.WebClients.Examples.Api;
public class Customer
{
#region Properties
public int Id { get; set; }
public string FirstName { get; set; }
public string LastName { get; set; }
public string EMail { get; set; }
public string DisplayName { get; set; }
public bool IsActive { get; set; }
#endregion
}