a2171e643d
- FTP - Gomba - Icoel - MultiCcn - OSAI - SqlDB
20 lines
444 B
C#
20 lines
444 B
C#
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;
|
|
}
|
|
}
|