TaskParticipant
Description
Represents a participant associated with a task, which can be either an individual user or a group. This class is sealed and cannot be inherited.
Constructors
| Constructor | Description |
|---|---|
| TaskParticipant() | Initializes a new instance of the TaskParticipant class. |
Properties
ParticipantName String
Gets or sets the name of the participant, which can refer to either a user or a group.
C#
public string ParticipantName { get; set; }
IsGroup Boolean
Gets or sets a value that indicates whether the participant is a group.
C#
public bool IsGroup { get; set; }