This commit is contained in:
2021-04-20 18:10:07 -04:00
commit a73e1584fb
38 changed files with 2489 additions and 0 deletions

View File

@ -0,0 +1,9 @@
using System;
namespace Salesforce.NET
{
/// <summary>
/// Instructs the query generator to ignore this property
/// </summary>
public class QueryIgnoreAttribute : Attribute { }
}

View File

@ -0,0 +1,17 @@
using System;
namespace Salesforce.NET
{
/// <summary>
/// Associates the entity to an object in Salesforce
/// </summary>
public class SalesforceObjectAttribute : Attribute
{
public string ObjectName { get; }
public SalesforceObjectAttribute(string objectName)
{
ObjectName = objectName;
}
}
}