using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Magic.Core.Service; public class CreateEntityInput { /// /// /// /// student public string TableName { get; set; } /// /// /// /// Student public string EntityName { get; set; } /// /// /// /// AutoIncrementEntity public string BaseClassName { get; set; } /// /// /// /// Magic.Application public string Position { get; set; } }