ServiceQueue.cs 501B

123456789101112131415161718192021
  1. using System;
  2. using System.Collections.Generic;
  3. #nullable disable
  4. namespace WebApplication3.Models
  5. {
  6. public partial class ServiceQueue
  7. {
  8. public uint Id { get; set; }
  9. public uint? IdSimulacion { get; set; }
  10. public uint? IdAcuifero { get; set; }
  11. public string Inicio { get; set; }
  12. public string Fin { get; set; }
  13. public byte Terminado { get; set; }
  14. public byte Error { get; set; }
  15. public byte Corriendo { get; set; }
  16. }
  17. }