14 lines
320 B
C#
14 lines
320 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.DeleteSampleItem.Input
|
|
{
|
|
public class DeleteSampleItemRequest : Notificator, ICommand
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|