Files
WorkFlow/WorkFlow.Application/DTO/State/StateDto.cs

4 lines
138 B
C#

namespace WorkFlow.Application.DTO.State
{
public record StateDto(int Id, string IntlState, string AddedWho, DateTime AddedWhen);
}