using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class ImLabel { public string Id { get; set; } = null!; public short? FCharSet { get; set; } public int? FColor { get; set; } public string? FName { get; set; } public short? FSize { get; set; } public short? FBold { get; set; } public short? FItalic { get; set; } public short? FStrikeout { get; set; } public short? FUnderLine { get; set; } public string? Caption { get; set; } public virtual ImGlyph IdNavigation { get; set; } = null!; } }