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.
15 lines
424 B
15 lines
424 B
using Application.Domain.Entities;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace IoT.Shared.Application.Models
|
|
{
|
|
public class DataViewModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string Time { get; set; } = "10m";
|
|
public IoTDevice Device { get; set; }
|
|
public Dictionary<IoTData, List<IoTData>> DataList { get; set; } = new Dictionary<IoTData, List<IoTData>>();
|
|
}
|
|
}
|