blob: 5ae8e296a38df8c04ea72af063dd0b0d2cd9e4b3 (
plain) (
blame)
1
2
3
4
5
6
7
|
namespace IOL.GreatOffice.Api.Models.Database;
public class CustomerGroup : BaseWithOwner
{
public string Name { get; set; }
public ICollection<Customer> Customers { get; set; }
}
|