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

public class CustomerGroupMembership : Base
{
    public Customer Customer { get; set; }
    public CustomerGroup Group { get; set; }
}