40 lines
861 B
C#
40 lines
861 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace LearningOfficer.OA.Common.Configs
|
|
{
|
|
public class MobileToH5Config
|
|
{
|
|
/// <summary>
|
|
/// H5解析地址(高中)
|
|
/// </summary>
|
|
public string HighSchoolUrl { get; set; }
|
|
/// <summary>
|
|
/// H5解析地址(初中)
|
|
/// </summary>
|
|
public string JuniorUrl { get; set; }
|
|
}
|
|
/// <summary>
|
|
/// 获取H5链接枚举
|
|
/// </summary>
|
|
public enum MobileToH5ConfigEnum
|
|
{
|
|
/// <summary>
|
|
/// 意见反馈地址
|
|
/// </summary>
|
|
feedback,
|
|
/// <summary>
|
|
/// 积分商城地址
|
|
/// </summary>
|
|
points,
|
|
/// <summary>
|
|
/// 金点子榜单
|
|
/// </summary>
|
|
ranking
|
|
|
|
}
|
|
}
|