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