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#
Raw Permalink Normal View History

2021-04-20 22:10:07 +00:00
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; }
}
2021-04-22 20:31:22 +00:00
}