Add project files.
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
using Lib.Architecture.BuildingBlocks;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace Core.Blueprint.Service.UseCases.GetSecret.Input
|
||||
{
|
||||
public class GetSecretRequest : Notificator, ICommand
|
||||
{
|
||||
public string? Secret { get; set; }
|
||||
|
||||
public bool Validate()
|
||||
{
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user