ImDiagram.cs 937 B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImDiagram
  6. {
  7. public string Id { get; set; } = null!;
  8. public string PrjId { get; set; } = null!;
  9. public int? Width { get; set; }
  10. public int? Height { get; set; }
  11. public int? GridSize { get; set; }
  12. public short? ShowGrid { get; set; }
  13. public double? Scale { get; set; }
  14. public int? PwrOnColor { get; set; }
  15. public int? PwrOffColor { get; set; }
  16. public int? SwitchOnColor { get; set; }
  17. public int? SwitchOffColor { get; set; }
  18. public int? SwitchUnknownColor { get; set; }
  19. public DateTime? CreateTime { get; set; }
  20. public string? Creator { get; set; }
  21. public virtual ImGlyph IdNavigation { get; set; } = null!;
  22. public virtual ImProject Prj { get; set; } = null!;
  23. }
  24. }