暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ChangesetFromCollabCommitResponse.cs 987B

1234567891011121314151617181920212223242526272829303132333435363738
  1. using Unity.Plastic.Newtonsoft.Json;
  2. using PlasticGui.WebApi.Responses;
  3. namespace Unity.PlasticSCM.Editor.WebApi
  4. {
  5. public class ChangesetFromCollabCommitResponse
  6. {
  7. /// <summary>
  8. /// Error caused by the request.
  9. /// </summary>
  10. [JsonProperty("error")]
  11. public ErrorResponse.ErrorFields Error { get; set; }
  12. /// <summary>
  13. /// The repository ID
  14. /// </summary>
  15. [JsonProperty("repId")]
  16. public uint RepId { get; set; }
  17. /// <summary>
  18. /// The repository module ID
  19. /// </summary>
  20. [JsonProperty("repModuleId")]
  21. public uint RepModuleId { get; set; }
  22. /// <summary>
  23. /// The changeset ID
  24. /// </summary>
  25. [JsonProperty("changesetId")]
  26. public long ChangesetId { get; set; }
  27. /// <summary>
  28. /// The branch ID
  29. /// </summary>
  30. [JsonProperty("branchId")]
  31. public long BranchId { get; set; }
  32. }
  33. }