aboutsummaryrefslogtreecommitdiffstats
path: root/code/api/src/Models/Database/Customer/CustomerEvent.cs
blob: a87da4cbb4eae263ea7477c9a162d1f76fff555e (plain) (blame)
1
2
3
4
5
6
7
8
namespace IOL.GreatOffice.Api.Data.Database;

public class CustomerEvent : BaseWithOwner
{
	public Customer Customer { get; set; }
	public string Title { get; set; }
	public string Note { get; set; }
}