40 lines
848 B
C#
40 lines
848 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace New_College
|
|
{
|
|
public static class AliYunOssConfig
|
|
{
|
|
public static string wendpoint { get; set; }
|
|
|
|
public static string bucket { get; set; }
|
|
|
|
public static string accessKeyId { get; set; }
|
|
|
|
public static string accessKeySecret { get; set; }
|
|
|
|
public static string endpoint { get; set; }
|
|
}
|
|
|
|
|
|
|
|
public static class CasdoorConfig
|
|
{
|
|
|
|
/// <summary>
|
|
///验证接口入口
|
|
/// </summary>
|
|
public static string Endpoint { get; set; }
|
|
public static string ClientId { get; set; }
|
|
public static string ClientSecret { get; set; }
|
|
|
|
/// <summary>
|
|
/// 回调登录地址
|
|
/// </summary>
|
|
public static string CallbackPath { get; set; }
|
|
}
|
|
|
|
|
|
}
|