/Atlassian.Jira/IRemoteIssueFieldProvider.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0 · C# · 16 lines · 12 code · 1 blank · 3 comment · 0 complexity · df3f343d5a89c3d804ad03dfd2ebb1f2 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. /// Represents a type that can provide RemoteFieldValues.
  10. /// </summary>
  11. public interface IRemoteIssueFieldProvider
  12. {
  13. RemoteFieldValue[] GetRemoteFields();
  14. }
  15. }