CreateEntityInput.cs 683 B

1234567891011121314151617181920212223242526272829
  1. namespace Admin.NET.Core.Service
  2. {
  3. public class CreateEntityInput
  4. {
  5. /// <summary>
  6. ///
  7. /// </summary>
  8. /// <example>student</example>
  9. public string TableName { get; set; }
  10. /// <summary>
  11. ///
  12. /// </summary>
  13. /// <example>Student</example>
  14. public string EntityName { get; set; }
  15. /// <summary>
  16. ///
  17. /// </summary>
  18. /// <example>AutoIncrementEntity</example>
  19. public string BaseClassName { get; set; }
  20. /// <summary>
  21. ///
  22. /// </summary>
  23. /// <example>Magic.Application</example>
  24. public string Position { get; set; }
  25. }
  26. }