feat(PControlsUpdateDto): add dto of PControlsUpdate

This commit is contained in:
tekh 2025-08-04 17:19:29 +02:00
parent 9b7475bb56
commit f54329ecd3

View File

@ -0,0 +1,12 @@
namespace WorkFlow.Application.Dto;
public record PControlsUpdateDto
{
public string? AttrName { get; set; }
public string? AttrValue { get; set; }
public string? AddedWho { get; set; }
public DateTime? AddedWhen { get; set; }
}