2024-03-07 11:15:47 +01:00

14 lines
306 B
C#

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