15 lines
343 B
C#
15 lines
343 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.CreateSampleImage.Input
|
|
{
|
|
public class CreateSampleImageRequest : Notificator, ICommand
|
|
{
|
|
public Guid? Id;
|
|
public byte[] NumValue { get; set; } = [];
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|