using System; using System.Collections.Generic; namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models { public partial class TbGrid { public string Id { get; set; } = null!; public int RowCnt { get; set; } public int ColCnt { get; set; } public virtual TbGlyph IdNavigation { get; set; } = null!; } }