TenantCurrency.cs 524 B

1234567891011121314151617181920
  1. using System;
  2. using System.Collections.Generic;
  3. namespace Workbench.Entity
  4. {
  5. public partial class TenantCurrency
  6. {
  7. /// <summary>
  8. /// Reference to tenant
  9. /// </summary>
  10. public long TenantId { get; set; }
  11. /// <summary>
  12. /// Reference to currency
  13. /// </summary>
  14. public long CurrencyId { get; set; }
  15. public virtual Currency Currency { get; set; } = null!;
  16. public virtual Tenant Tenant { get; set; } = null!;
  17. }
  18. }