phronCare/Models/Models/PhOhTicket.cs

40 lines
852 B
C#

using System;
using System.Collections.Generic;
namespace Models.Models;
public partial class PhOhTicket
{
public Guid TicketId { get; set; }
public string? Titulo { get; set; }
public string? Descripcion { get; set; }
public string? Prioridad { get; set; }
public string? Estado { get; set; }
public string? CreadorUsuarioId { get; set; }
public DateTime? FechaCreacion { get; set; }
public string? AsignadoAusuarioId { get; set; }
public DateTime? FechaEjecucion { get; set; }
public string? Categoria { get; set; }
public string? Comentarios { get; set; }
public string? Departamento { get; set; }
public string? Impacto { get; set; }
public string? Urgencia { get; set; }
public bool? EsSolicitudCliente { get; set; }
public string? AdjuntoArchivo { get; set; }
}