2025-07-08 14:01:10 +08:00

15 lines
355 B
C#

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!;
}
}