9 lines
207 B
C#
9 lines
207 B
C#
namespace Marco.Pms.Model.Dtos.Tenant
|
|
{
|
|
public class SubscriptionCheckListDto
|
|
{
|
|
public string Name { get; set; } = string.Empty;
|
|
public bool IsActive { get; set; } = true;
|
|
}
|
|
}
|