This repository has been archived on 2024-03-05. You can view files and clone it, but cannot push or open issues or pull requests.
Salesforce.NET/Annotations/QueryIgnoreAttribute.cs

10 lines
200 B
C#
Raw Permalink Normal View History

2021-04-20 22:10:07 +00:00
using System;
namespace Salesforce.NET
{
/// <summary>
/// Instructs the query generator to ignore this property
/// </summary>
public class QueryIgnoreAttribute : Attribute { }
}