Skip to main content

CreateGroupDto

Namespace: Meshmakers.Octo.Communication.Contracts.DataTransferObjects

Data Transfer Object for creating a group.

public record CreateGroupDto : IEquatable<CreateGroupDto>

Inheritance ObjectCreateGroupDto
Implements IEquatable<CreateGroupDto>

Properties

GroupName

Name of the group.

public string GroupName { get; set; }

Property Value

String

GroupDescription

Optional description of the group.

public string GroupDescription { get; set; }

Property Value

String

RoleIds

Optional list of role IDs to assign to the group.

public List<string> RoleIds { get; set; }

Property Value

List<String>

Constructors

CreateGroupDto()

public CreateGroupDto()