Files
Examples/GerstITS.Examples.Logic/Customers/Contracts/CustomerNote.cs
T

13 lines
229 B
C#

namespace GerstITS.Examples.Logic.Customers;
public class CustomerNote
{
#region Properties
public int Id { get; set; }
public string Text { get; set; }
public DateTime ValidFrom { get; set; }
#endregion
}