-
Notifications
You must be signed in to change notification settings - Fork 1
/
Secrets.Google.cs
24 lines (22 loc) · 986 Bytes
/
Secrets.Google.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
/*
* This is a template file for HardySoft.PhotosUploaderDownloader.Google\Security\Secret.cs, which is not included in the version control system.
* You need to get your own values from https://console.developers.google.com/, then copy the content to the file as described above.
*/
namespace HardySoft.PhotosUploaderDownloader.Google.Security
{
/// <summary>
/// A class to have the secrets used to communicate with Google Api.
/// </summary>
/// <remarks>Please visit https://console.developers.google.com/apis/credentials to create your own credential and replace values in this class.</remarks>
internal static class Secrets
{
/// <summary>
/// The Google credential client Id.
/// </summary>
public const string ClientId = "your-value-goes-here";
/// <summary>
/// The Google credential client secret.
/// </summary>
public const string ClientSecret = "your-value-goes-here";
}
}