Files
Core.Blueprint.Service/Core.Blueprint.Application/UsesCases/SQL/Input/CreateSqlSampleRequest.cs
2025-05-18 15:49:46 -06:00

16 lines
396 B
C#

using Lib.Architecture.BuildingBlocks;
namespace Core.Blueprint.Application.UsesCases.SQL.Input
{
public class CreateSqlSampleRequest : Notificator, ICommand
{
public string Name { get; set; } = null!;
public string Description { get; set; } = null!;
public bool Validate()
{
return Name != null && Name != string.Empty;
}
}
}