14 lines
300 B
C#
14 lines
300 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Thalos.Application.UseCases.Modules.Input
|
|
{
|
|
public class DeleteModuleRequest : Notificator, ICommand
|
|
{
|
|
public string _Id { get; set; }
|
|
public bool Validate()
|
|
{
|
|
return _Id != null;
|
|
}
|
|
}
|
|
}
|