12 lines
497 B
C#
12 lines
497 B
C#
namespace WorkFlow.Application.DTO.Profile
|
|
{
|
|
public record ProfileDto(int Id,
|
|
string IntlName,
|
|
int ExtId1,
|
|
bool Active,
|
|
byte TypeId,
|
|
string AddedWho,
|
|
DateTime AddedWhen,
|
|
string? ChangedWho = null,
|
|
DateTime? ChangedWhen = null);
|
|
} |