PageRenderTime 46ms CodeModel.GetById 24ms RepoModel.GetById 1ms app.codeStats 0ms

/Atlassian.Jira/ProjectComponent.cs

https://bitbucket.org/gassies/atlassian.net-sdk
C# | 30 lines | 24 code | 3 blank | 3 comment | 0 complexity | 3846c19dc4f8884a1d00cf39814e9fa8 MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using Atlassian.Jira.Remote;
  6. namespace Atlassian.Jira
  7. {
  8. /// <summary>
  9. /// A component associated with a project
  10. /// </summary>
  11. public class ProjectComponent: JiraNamedEntity
  12. {
  13. private readonly RemoteComponent _remoteComponent;
  14. internal ProjectComponent(RemoteComponent remoteComponent)
  15. :base(remoteComponent)
  16. {
  17. _remoteComponent = remoteComponent;
  18. }
  19. internal RemoteComponent RemoteComponent
  20. {
  21. get
  22. {
  23. return _remoteComponent;
  24. }
  25. }
  26. }
  27. }