17 lines
382 B
C#
17 lines
382 B
C#
using Core.Blueprint.Mongo;
|
|
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Thalos.Application.UseCases.Tenants.Input
|
|
{
|
|
public class ChangeTenantStatusRequest : Notificator, ICommand
|
|
{
|
|
public string _Id { get; set; }
|
|
public StatusEnum Status { get; set; }
|
|
|
|
public bool Validate()
|
|
{
|
|
return _Id != null;
|
|
}
|
|
}
|
|
}
|