using System; using System.Collections.Generic; using System.ComponentModel.DataAnnotations; using System.ComponentModel.DataAnnotations.Schema; using System.Data.Entity.Spatial; namespace EgwProxy.Icoel.DataLayer.DatabaseModels { [Table("CurrData")] public partial class CurrDataModel { [Key] [StringLength(50)] public string Topic { get; set; } public decimal CurrVal { get; set; } = 0; } }