forked from ddrilling/AsbCloudServer
23 lines
458 B
C#
23 lines
458 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace AsbCloudApp.Data
|
|||
|
{
|
|||
|
public class LastDataDto
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public int IdWell { get; set; }
|
|||
|
|
|||
|
public int IdCategory { get; set; }
|
|||
|
|
|||
|
public string CategoryName { get; set; }
|
|||
|
|
|||
|
public DateTime DateInsert { get; set; }
|
|||
|
|
|||
|
public DateTime DateModify { get; set; }
|
|||
|
|
|||
|
public Dictionary<string, object> Data { get; set; }
|
|||
|
}
|
|||
|
}
|