添加项目文件。
This commit is contained in:
25
app/Tnb.Apps.Entitys/Dto/AppDataCrInput.cs
Normal file
25
app/Tnb.Apps.Entitys/Dto/AppDataCrInput.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using JNPF.DependencyInjection;
|
||||
|
||||
namespace JNPF.Apps.Entitys.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// App常用数据创建输入.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class AppDataCrInput
|
||||
{
|
||||
/// <summary>
|
||||
/// 应用类型.
|
||||
/// </summary>
|
||||
public string? objectType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应用主键.
|
||||
/// </summary>
|
||||
public string? objectId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数据.
|
||||
/// </summary>
|
||||
public string? objectData { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user