13 lines
259 B
C#
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;
|
|
}
|
|
}
|
|
}
|