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

public class CustomerGroup : BaseWithOwner
{
    public string Name { get; set; }
    public ICollection<Customer> Customers { get; set; }
}