13 lines
312 B
C#
13 lines
312 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|
{
|
|
public partial class IaFuncNameConst
|
|
{
|
|
public string FnameId { get; set; } = null!;
|
|
public string Fname { get; set; } = null!;
|
|
public int? SeqNo { get; set; }
|
|
}
|
|
}
|