13 lines
237 B
C#
13 lines
237 B
C#
namespace GerstITS.Examples.WebClients.Examples.Api;
|
|
|
|
public class CustomerNote
|
|
{
|
|
#region Properties
|
|
|
|
public int Id { get; set; }
|
|
public string Text { get; set; }
|
|
public DateTime ValidFrom { get; set; }
|
|
|
|
#endregion
|
|
}
|