using Lib.Architecture.BuildingBlocks; namespace Core.Blueprint.Application.UsesCases.KeyVault.Input { public class GetSecretRequest : Notificator, ICommand { public string Name { get; set; } public bool Validate() { return string.IsNullOrEmpty(Name); } } }