forked from anthonyreilly/NetCoreForce
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGenConfig.cs
26 lines (23 loc) · 783 Bytes
/
GenConfig.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
using System.Collections.Generic;
using NetCoreForce.Client.Models;
namespace NetCoreForce.ModelGenerator
{
public class GenConfig
{
public AuthInfo AuthInfo { get; set; }
public string OutputDirectory { get; set; }
public List<string> Objects { get; set; }
public string ClassPrefix { get; set; }
public string ClassSuffix { get; set; }
public string ClassNamespace { get; set; }
public bool IncludeCustom { get; set; }
public bool IncludeReferences { get; set; }
public GenConfig()
{
this.AuthInfo = new AuthInfo(){
TokenRequestEndpoint = "https://login.salesforce.com/services/oauth2/token",
ApiVersion = "v57.0"
};
}
}
}