Add project files.

This commit is contained in:
Sergio Matias Urquin
2025-04-29 18:44:41 -06:00
parent c4ec91852f
commit b2635193dc
133 changed files with 4100 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
using Lib.Architecture.BuildingBlocks;
namespace Core.Blueprint.Service.UseCases.GetSampleItems.Input
{
public class GetSampleItemsRequest : Notificator, ICommand
{
public Guid Id { get; set; }
public string TestName { get; set; }
public int NumValue { get; set; }
public bool Validate()
{
return true;
}
}
}