20 lines
491 B
C#
20 lines
491 B
C#
using GerstITS.Data;
|
|
|
|
namespace GerstITS.Examples.Data.Entities;
|
|
|
|
public sealed class CustomerNoteEntity : EntityBase<int>, ICreatable, IReadOnlyCreatable, IHistoricizable, IReadOnlyHistoricizable
|
|
{
|
|
#region Properties
|
|
|
|
public int CustomerId { get; set; }
|
|
public string Text { get; set; }
|
|
|
|
public DateTime Created { get; set; }
|
|
public string CreatedBy { get; set; }
|
|
|
|
public string HistorySet { get; set; }
|
|
public DateTime ValidFrom { get; set; }
|
|
|
|
#endregion
|
|
}
|