Files
2025-01-25 04:38:09 +08:00

36 lines
980 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
namespace Thousandto.Update.Xml
{
/// <summary>
/// 服务器端配置的xml数据类
/// </summary>
public partial class ResourceVersionXml
{
//正式流程数据
public DataModel NormalFollow { get; set;}
//测试流程
public DataModel TestFollow { get; set;}
//白名单mac地址、或机器码
public List<string> WhiteCode { get; set;}
//白名单:用户名或版本号
public List<string> WhiteUsers { get; set;}
//白名单ip地址
public List<string> WhiteIp { get; set; }
public ResourceVersionXml()
{
NormalFollow = new DataModel();
TestFollow = new DataModel();
WhiteCode = new List<string>();
WhiteUsers = new List<string>();
WhiteIp = new List<string>();
}
}
}