blob: f12fab15ce4273a6c09f501e40023390d7838c1d (
plain) (
blame)
1
2
3
4
5
6
7
8
|
namespace IOL.GreatOffice.Api.Models.Database;
public class CustomerEvent : BaseWithOwner
{
public Customer Customer { get; set; }
public string Title { get; set; }
public string Note { get; set; }
}
|