using System; using System.Collections.Generic; using System.Text; namespace ProductionLineMonitor.Core.Dtos { public class HomeDto { public int Capacity { get; set; } public float EnergyConsumption { get; set; } public int Cim { get; set; } } }