ImGlyphHot.cs 492 B

1234567891011121314151617
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class ImGlyphHot
  6. {
  7. public string GlyphId { get; set; } = null!;
  8. public short HotIndex { get; set; }
  9. public double X { get; set; }
  10. public double Y { get; set; }
  11. public short HotType { get; set; }
  12. public string? ConnectedGlyph { get; set; }
  13. public virtual ImGlyph Glyph { get; set; } = null!;
  14. }
  15. }