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