13 lines
370 B
C#
13 lines
370 B
C#
namespace Marco.Pms.Model.Dtos.Tenant
|
|
{
|
|
public class AddSubscriptionDto
|
|
{
|
|
public Guid TenantId { get; set; }
|
|
public Guid PlanId { get; set; }
|
|
public Guid CurrencyId { get; set; }
|
|
public double MaxUsers { get; set; }
|
|
public bool IsTrial { get; set; } = false;
|
|
public bool AutoRenew { get; set; } = true;
|
|
}
|
|
}
|