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