18 lines
481 B
C#
18 lines
481 B
C#
using Lib.Architecture.BuildingBlocks;
|
|
|
|
namespace Core.Blueprint.Service.UseCases.UpdateSampleItem.Input
|
|
{
|
|
public class UpdateSampleItemRequest : Notificator, ICommand
|
|
{
|
|
public string Id { get; set; } = string.Empty;
|
|
public string TestName { get; set; } = string.Empty;
|
|
public int NumValue { get; set; } = 0;
|
|
public char StatusCode { get; set; } = 'P';
|
|
|
|
public bool Validate()
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
}
|