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