30 lines
521 B
C#
30 lines
521 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace MyCode.Project.Domain.Message.Act.Common
|
|
{
|
|
public class ExcelData
|
|
{
|
|
/// <summary>
|
|
/// 文件名
|
|
/// </summary>
|
|
public string FileName
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
|
|
/// <summary>
|
|
/// 动态数据
|
|
/// </summary>
|
|
public dynamic DyData
|
|
{
|
|
get;
|
|
set;
|
|
}
|
|
}
|
|
}
|