18 lines
414 B
C#
18 lines
414 B
C#
using GerstITS.Examples.Logic.Shared.Search.Sorting;
|
|
|
|
namespace GerstITS.Examples.Logic.Customers;
|
|
|
|
public class Customer : ISortable
|
|
{
|
|
#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
|
|
}
|