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; } } }