using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
//----------------------------------------------------------------
//Module Name: $safeprojectname$
//Purpose:
//CopyRight: Muchinfo
//History:
//----------------------------------------------------------------
//DateTime 2016/12/15 11:07:39
//Author
//Description Create
//----------------------------------------------------------------
using Muchinfo.MTPClient.Data.Helper;
namespace Muchinfo.MTPClient.Data
{
///
/// 下载资源
///
public class ResxDescrition
{
///
/// 显示资源键值
///
[PropertyDisc("constKey")]
public string ConstKey { get; set; }
///
/// 显示资源 内容
///
[PropertyDisc("remarks")]
public string Remarks { get; set; }
}
///
/// 资源类型版本
///
public enum ResxVerType
{
// 1 产品版本 2 db版本 3 常量版本 4 错误码版本
///
/// 产品版本
///
Product=1,
///
/// db版本
///
db=2,
///
/// 常量版本
///
_const=3,
///
/// 错误码版本
///
errorCode=4,
}
///
/// 资源版本号
///
public class ResxVerInfo
{
///
/// 版本类型
///
[PropertyDisc("Versiontype")]
public ResxVerType Versiontype { get; set; }
///
/// 显示版本号
///
[PropertyDisc("versionno")]
public ulong Versionno { get; set; }
}
}