/Atlassian.Jira/Linq/JqlFieldNameAttribute.cs
https://bitbucket.org/yyo/atlassian.net-sdk-v2.0 · C# · 21 lines · 16 code · 2 blank · 3 comment · 0 complexity · 18ca4864c451f02e0e946e643019810e MD5 · raw file
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
-
- namespace Atlassian.Jira.Linq
- {
- /// <summary>
- /// Attribute that can be applied to properties that map to different JQL field names
- /// </summary>
- [AttributeUsage(AttributeTargets.Property)]
- internal class JqlFieldNameAttribute: Attribute
- {
- public string Name { get; set; }
-
- public JqlFieldNameAttribute(string name)
- {
- this.Name = name;
- }
- }
- }