Files
Api/DouyinApi.Model/Systems/DataBase/EditTableInput.cs
2025-11-04 21:09:16 +08:00

10 lines
208 B
C#

namespace DouyinApi.Model.Systems.DataBase;
public class EditTableInput
{
public string ConfigId { get; set; }
public string TableName { get; set; }
public string Description { get; set; }
}