15 lines
323 B
C#
15 lines
323 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Blueprint.Application.UsesCases.KeyVault.Input
|
|
{
|
|
public class DeleteSecretRequest : Notificator, ICommand
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public bool Validate()
|
|
{
|
|
return !string.IsNullOrEmpty(Name);
|
|
}
|
|
}
|
|
}
|