Core.Blueprint.Service/Core.Blueprint.Application/UsesCases/SQL/Input/GetAllUserProjectsRequest.cs
Sergio Matias Urquin b2635193dc Add project files.
2025-04-29 18:44:41 -06:00

13 lines
259 B
C#

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