EditTableInput.cs 218 B

1234567891011
  1. namespace Admin.NET.Core.Service
  2. {
  3. public class EditTableInput
  4. {
  5. public string Name { get; set; }
  6. public string OldName { get; set; }
  7. public string Description { get; set; }
  8. }
  9. }