2024-08-21 16:50:14 +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!;
}
}