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

13 lines
257 B
C#

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