This commit is contained in:
2025-06-30 19:22:02 +08:00
commit a2e0ca09a6
2663 changed files with 1367889 additions and 0 deletions

View File

@@ -0,0 +1,21 @@
using MyCode.Project.Domain.Dtos.Common;
using System;
namespace MyCode.Project.Domain.Dtos.Request.Act
{
// <summary>
/// 文件组操作
/// </summary>
public class FileGroupAct : RowEdit
{
/// <summary>
/// 文件分组ID
/// </summary>
public Guid? Id { get; set; }
/// <summary>
/// 文件分组名
/// </summary>
public string Name { get; set; }
}
}