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

13 lines
289 B
C#

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