using Quadarax.Application.QLiberace.Common.Entities.Base; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Quadarax.Application.QLiberace.Base.Entities { public class TenantCountry: QlbrcEntityKeyless { public long CountryId { get; set; } public long TenantId { get; set; } public Country Country { get; set; } = null!; public Tenant Tenant { get; set; } = null!; } }