You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
iot/projects/IoT.Shared/Application/Models/DataViewModel.cs

14 lines
394 B

using Application.Domain.Entities;
using System;
using System.Collections.Generic;
namespace Application.Models
{
public class DataViewModel
{
public Guid Id { get; set; }
public string Time { get; set; } = "10m";
public Device Device { get; set; }
public Dictionary<Data, List<Data>> DataList { get; set; } = new Dictionary<Data, List<Data>>();
}
}