13 lines
261 B
C#
13 lines
261 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.GetSampleImage.Input
|
|
{
|
|
public class GetSampleImageRequest : Notificator, ICommand
|
|
{
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|