summaryrefslogtreecommitdiffstats
path: root/server/src/Data/Database/CustomerEvent.cs
blob: da3e3ed9bd3108af61e3605eea0b086a0fe3da3d (plain) (blame)
1
2
3
4
5
6
7
namespace IOL.GreatOffice.Api.Data.Database;

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