Files
Core.Blueprint.Service/Core.Blueprint.Application/UsesCases/KeyVault/Input/GetSecretRequest.cs
Sergio Matias Urquin b2635193dc Add project files.
2025-04-29 18:44:41 -06:00

15 lines
319 B
C#

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);
}
}
}