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

13 lines
261 B
C#

using Lib.Architecture.BuildingBlocks;
namespace Core.Blueprint.Application.UsesCases.Mongo.Input
{
public class GetAllMongoSamplesRequest : Notificator, ICommand
{
public bool Validate()
{
return true;
}
}
}