TenantCountry.cs 515 B

12345678910111213141516171819
  1. using Quadarax.Application.QLiberace.Common.Entities.Base;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.Linq;
  5. using System.Text;
  6. using System.Threading.Tasks;
  7. namespace Quadarax.Application.QLiberace.Base.Entities
  8. {
  9. public class TenantCountry: QlbrcEntityKeyless
  10. {
  11. public long CountryId { get; set; }
  12. public long TenantId { get; set; }
  13. public Country Country { get; set; } = null!;
  14. public Tenant Tenant { get; set; } = null!;
  15. }
  16. }