14 lines
304 B
C#

namespace DigitalData.UserManager.Application.DTOs.Group
{
public record GroupReadDto
(
int Id,
string? Name,
bool? AdSync,
bool? Internal,
bool? Active,
string? Comment,
string? AddedWho,
string? ChangedWho
);
}