using Quadarax.Application.QLiberace.Common.Entities.Base; namespace Quadarax.Application.QLiberace.Customer.Entities { public class CustomerUser: QlbrcEntityKeyless { public string UserLoginName { get; set; } = null!; public long CustomerId { get; set; } public Customer Customer { get; set; } = null!; } }