DD.WellWorkover.Cloud/AsbCloudApp/Data/LastDataDto.cs

23 lines
458 B
C#
Raw Normal View History

2021-08-27 17:55:22 +05:00
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; }
}
}