using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImGlyphHot { public string GlyphId { get; set; } = null!; public short HotIndex { get; set; } public double X { get; set; } public double Y { get; set; } public short HotType { get; set; } public string? ConnectedGlyph { get; set; } public virtual ImGlyph Glyph { get; set; } = null!; } }