18 lines
538 B
C#
18 lines
538 B
C#
![]() |
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace CodeFirstExistingDatabaseSample.ISMS_BASE.Models
|
|||
|
{
|
|||
|
public partial class ImAsdu140FltCurrInfo
|
|||
|
{
|
|||
|
public string CompanyName { get; set; } = null!;
|
|||
|
public int CurrIndCode { get; set; }
|
|||
|
public string CurrName { get; set; } = null!;
|
|||
|
public string? Unit { get; set; }
|
|||
|
public int Precise { get; set; }
|
|||
|
public double Coeff { get; set; }
|
|||
|
|
|||
|
public virtual ImManufacturer CompanyNameNavigation { get; set; } = null!;
|
|||
|
}
|
|||
|
}
|