using IoT.Shared.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> DataList { get; set; } = new Dictionary>(); } }