12345678910111213141516171819 |
- using System;
- using System.Collections.Generic;
-
- #nullable disable
-
- namespace WebApplication3.Models
- {
- public partial class Servicio
- {
- public uint Id { get; set; }
- public uint? Pid { get; set; }
- public byte Terminado { get; set; }
- public string Inicio { get; set; }
- public string Fin { get; set; }
- public string Tipo { get; set; }
-
- }
- }
|