20 lines
493 B
C#
20 lines
493 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Traffic.Data.Models
|
|
{
|
|
public class Tycg
|
|
{
|
|
public int Id { get; set; }
|
|
public Int64 Timestamp { get; set; }
|
|
public int Trendflags { get; set; }
|
|
public int Status { get; set; }
|
|
public string Value { get; set; }
|
|
public string Trendflags_Tag { get; set; }
|
|
public string Status_tag { get; set; }
|
|
}
|
|
}
|