Files
Core.Blueprint.Service/Core.Blueprint.Application/UsesCases/Mongo/Input/CreateMongoSampleRequest.cs
2025-05-18 15:49:46 -06:00

17 lines
393 B
C#

using Lib.Architecture.BuildingBlocks;
namespace Core.Blueprint.Application.UsesCases.Mongo.Input
{
public class CreateMongoSampleRequest : Notificator, ICommand
{
public string Name { get; set; } = null!;
public string? Description { get; set; }
public bool Validate()
{
return Name != null && Name != string.Empty;
}
}
}