Class MemberDto
Data transfer object representing an organization member with their roles and permissions.
Inherited Members
Namespace: OEMS.Core.Application.DTOs.Organization
Assembly: OEMS.Core.dll
Syntax
public class MemberDto
Properties
Gets or sets the email address of the organization member.
Declaration
public string Email { get; set; }
Property Value
Type | Description |
---|---|
string | The email address used for communication with the member. |
FullName
Gets or sets the full name of the organization member.
Declaration
public string FullName { get; set; }
Property Value
Type | Description |
---|---|
string | The complete name of the member. |
Id
Gets or sets the unique identifier of the member.
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
Guid | The GUID that uniquely identifies this member. |
IsDesigner
Gets or sets whether the member has design and branding privileges.
Declaration
public bool IsDesigner { get; set; }
Property Value
Type | Description |
---|---|
bool | True if the member can modify organization design elements, otherwise false. |
IsExternal
Gets or sets whether the member is an external user.
Declaration
public bool IsExternal { get; set; }
Property Value
Type | Description |
---|---|
bool | True if the member is external to the organization, otherwise false. |
IsOrgAdmin
Gets or sets whether the member has organization administrator privileges.
Declaration
public bool IsOrgAdmin { get; set; }
Property Value
Type | Description |
---|---|
bool | True if the member is an organization administrator, otherwise false. |
IsOrganizer
Gets or sets whether the member has event organizer privileges.
Declaration
public bool IsOrganizer { get; set; }
Property Value
Type | Description |
---|---|
bool | True if the member can organize events, otherwise false. |
JoinDate
Gets or sets the date when the member joined the organization.
Declaration
public DateTime JoinDate { get; set; }
Property Value
Type | Description |
---|---|
DateTime | The timestamp indicating when the member became part of the organization. |