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