123456789101112131415161718192021 |
- using System;
- using System.Collections.Generic;
-
- #nullable disable
-
- namespace WebApplication3.Models
- {
- public partial class ServiceQueue
- {
- public uint Id { get; set; }
- public uint? IdSimulacion { get; set; }
- public uint? IdAcuifero { get; set; }
- public string Inicio { get; set; }
- public string Fin { get; set; }
- public byte Terminado { get; set; }
- public byte Error { get; set; }
- public byte Corriendo { get; set; }
-
- }
- }
|