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

15 lines
290 B
C#

using Lib.Architecture.BuildingBlocks;
namespace Core.Blueprint.Application.UsesCases.SQL.Input
{
public class GetSqlSampleRequest : Notificator, ICommand
{
public int Id { get; set; }
public bool Validate()
{
return true;
}
}
}