/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
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using Atlassian.Jira.Remote;
-
- namespace Atlassian.Jira
- {
- /// <summary>
- /// Represents a type that can provide RemoteFieldValues.
- /// </summary>
- public interface IRemoteIssueFieldProvider
- {
- RemoteFieldValue[] GetRemoteFields();
- }
- }