using System; using System.Collections.Generic; namespace Workbench.Entity { public partial class TenantCurrency { /// /// Reference to tenant /// public long TenantId { get; set; } /// /// Reference to currency /// public long CurrencyId { get; set; } public virtual Currency Currency { get; set; } = null!; public virtual Tenant Tenant { get; set; } = null!; } }