| 1234567891011121314151617181920 |
- using Quadarax.Application.QLiberace.Base.Entities.Interfaces;
- using Quadarax.Application.QLiberace.Common.Entities.Base;
- namespace Quadarax.Application.QLiberace.Base.Entities
- {
- public class Country: QlbrcEntityTracked, IStructCodeName
- {
- public string Code { get; set; } = null!;
- public string Name { get; set; } = null!;
- public int Vat { get; set; } = 0;
- public long DefaultCurrencyId { get; set; }
- public Currency DefaultCurrency { get; set; } = null!;
- public virtual ICollection<TenantCountry> Tenants { get; set; }
- public Country()
- {
- Tenants = new List<TenantCountry>();
- }
- }
- }
|