예제 #1
0
 /// <summary>
 /// Removes an identity link from a task.
 /// </summary>
 public Task Delete(IdentityLink identityLink) => _api.DeleteIdentityLink(_taskId, identityLink);
예제 #2
0
 /// <summary>
 /// Adds an identity link to a task. Can be used to link any user or group to a task and specify and relation.
 /// </summary>
 public Task Add(IdentityLink identityLink) => _api.AddIdentityLink(_taskId, identityLink);