15 lines
373 B
C#
15 lines
373 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.CreateSampleItem.Input
|
|
{
|
|
public class CreateSampleItemRequest : Notificator, ICommand
|
|
{
|
|
public string TestName { get; set; } = string.Empty;
|
|
public int NumValue { get; set; } = 0;
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|