Пример #1
0
 /// <summary>
 /// Creates a new milestone in an issue tracker. You must supply a name value in the form of a string.
 /// The server creates the id for you and it appears in the return await value.
 /// Public and private issue trackers require the caller to authenticate with an account that has appropriate authorisation.
 /// </summary>
 /// <param name="milestone">The milestone.</param>
 /// <returns>The response from the BitBucket API.</returns>
 public async Task <Milestone> PostMilestone(Milestone milestone)
 {
     return(await _repositoriesEndPoint.PostMilestone(milestone));
 }