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/SalesforceCredentials.cs

12 lines
363 B
C#

namespace Salesforce.NET
{
public class SalesforceCredentials
{
public bool IsProduction { get; set; }
public string ClientId { get; set; }
public string ClientSecret { get; set; }
public string Username { get; set; }
public string Password { get; set; }
public string SecurityToken { get; set; }
}
}