CreateGroupDto
Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects
Data Transfer Object for creating a group.
public record CreateGroupDto : IEquatable<CreateGroupDto>
Inheritance Object → CreateGroupDto
Implements IEquatable<CreateGroupDto>
Properties
GroupName
Name of the group.
public string GroupName { get; set; }
Property Value
GroupDescription
Optional description of the group.
public string GroupDescription { get; set; }
Property Value
RoleIds
Optional list of role IDs to assign to the group.
public List<string> RoleIds { get; set; }
Property Value
Constructors
CreateGroupDto()
public CreateGroupDto()