Infrastructure/OpenAuth.App/BaseApp/FormScheme/Response/ComponentPropsModel.cs

21 lines
436 B
C#
Raw Normal View History

2024-11-13 09:19:06 +08:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenAuth.App.FormScheme.Response
{
public class ComponentPropsModel
{
/// <summary>
/// 表名
/// </summary>
public string DataTable { get; set; }
/// <summary>
/// 字段
/// </summary>
public string FieldName { get; set; }
}
}