PageRenderTime 48ms CodeModel.GetById 22ms RepoModel.GetById 0ms app.codeStats 0ms

/Atlassian.Jira/Linq/JqlContainsEqualityAttribute.cs

https://bitbucket.org/yyo/atlassian.net-sdk-v2.0
C# | 16 lines | 11 code | 1 blank | 4 comment | 0 complexity | 4ea658ad755de4965c0062b834f699bd MD5 | raw file
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Atlassian.Jira.Linq
  6. {
  7. /// <summary>
  8. /// Attribute that can be applied to properties to use a "Contains" rather than "Equals"
  9. /// when performing equality comparisons.
  10. /// </summary>
  11. [AttributeUsage(AttributeTargets.Property)]
  12. internal class JqlContainsEqualityAttribute: System.Attribute
  13. {
  14. }
  15. }