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

20 lines
350 B
C#

2 years ago
namespace DS.Module.FastReport;
/// <summary>
/// 自定义数据包
/// </summary>
public class DataPackage
{
/// <summary>
/// 功能码
/// </summary>
public string Key { get; set; } = "";
/// <summary>
/// 数据
/// </summary>
public byte[] Data { get; set; }
public string Body { get; set; }
}