You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
512 B

4 years ago
namespace learun.util
{
/// <summary>
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.09.24
/// 描 述:模板数据模型
/// </summary>
public class TemplateDataModel
{
/// <summary>
/// 行号
/// </summary>
public int row { get; set; }
/// <summary>
/// 列号
/// </summary>
public int cell { get; set; }
/// <summary>
/// 数据值
/// </summary>
public string value { get; set; }
}
}