IaFuncNameConst.cs 312 B

123456789101112
  1. using System;
  2. using System.Collections.Generic;
  3. namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
  4. {
  5. public partial class IaFuncNameConst
  6. {
  7. public string FnameId { get; set; } = null!;
  8. public string Fname { get; set; } = null!;
  9. public int? SeqNo { get; set; }
  10. }
  11. }