HomeDto.cs 286 B

12345678910111213
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Text;
  4. namespace ProductionLineMonitor.Core.Dtos
  5. {
  6. public class HomeDto
  7. {
  8. public int Capacity { get; set; }
  9. public float EnergyConsumption { get; set; }
  10. public int Cim { get; set; }
  11. }
  12. }