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.
19 lines
343 B
19 lines
343 B
namespace Admin.NET.Core.Service;
|
|
|
|
public class ConstOutput
|
|
{
|
|
/// <summary>
|
|
/// 名称
|
|
/// </summary>
|
|
public string Name { get; set; }
|
|
|
|
/// <summary>
|
|
/// 编码
|
|
/// </summary>
|
|
public dynamic Code { get; set; }
|
|
|
|
/// <summary>
|
|
/// 扩展字段
|
|
/// </summary>
|
|
public dynamic Data { get; set; }
|
|
}
|