CustomerUser.cs 363 B

12345678910111213
  1. using Quadarax.Application.QLiberace.Common.Entities.Base;
  2. namespace Quadarax.Application.QLiberace.Customer.Entities
  3. {
  4. public class CustomerUser: QlbrcEntityKeyless
  5. {
  6. public string UserLoginName { get; set; } = null!;
  7. public long CustomerId { get; set; }
  8. public Customer Customer { get; set; } = null!;
  9. }
  10. }