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

15 lines
331 B
C#

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