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