using StrixMusic.Cores.OneDrive;
using StrixMusic.Cores.OneDrive.Services;
namespace StrixMusic
{
///
/// Holds important data needed to initialize the app in a production environment.
///
///
/// Preconfigured for development. Add another partial and use a "!DEBUG" compilation conditional to configure for release mode.
///
/// IMPORTANT:
/// You will be prompted in-app for the missing data, do not modify this file.
///
internal static partial class Secrets
{
#if DEBUG
///
/// The for .
///
public static string OneDriveClientId { get; } = string.Empty;
///
/// The for .
///
public static string OneDriveTenantId { get; } = string.Empty;
///
/// The for .
///
public static string OneDriveRedirectUri { get; } = string.Empty;
#endif
}
}