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

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