DbmColumn.cs 420 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Azylee.Core.DbUtils.DbModels
  6. {
  7. public class DbmColumn
  8. {
  9. public string Field { get; set; }
  10. public string Type { get; set; }
  11. public int Length { get; set; }
  12. public string Null { get; set; }
  13. public string Key { get; set; }
  14. public string Default { get; set; }
  15. }
  16. }