Servicio.cs 407B

12345678910111213141516171819
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace WebApplication3.Models
  5. {
  6. public partial class Servicio
  7. {
  8. public uint Id { get; set; }
  9. public uint? Pid { get; set; }
  10. public byte Terminado { get; set; }
  11. public string Inicio { get; set; }
  12. public string Fin { get; set; }
  13. public string Tipo { get; set; }
  14. }
  15. }