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/SalesforceObjectAttribute.cs
2021-04-20 18:10:07 -04:00

18 lines
368 B
C#

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;
}
}
}