18 lines
777 B
C#
18 lines
777 B
C#
namespace Data.Entities
|
|
{
|
|
public partial class Tickets_Dashboard_Result
|
|
{
|
|
public System.Guid TicketId { get; set; }
|
|
public string Titulo { get; set; }=string.Empty;
|
|
public string Prioridad { get; set; } = string.Empty;
|
|
public string Estado { get; set; } = string.Empty;
|
|
public string CreadorUsuarioId { get; set; } = string.Empty;
|
|
public Nullable<System.DateTime> FechaCreacion { get; set; }
|
|
public string AsignadoAUsuarioId { get; set; } = string.Empty;
|
|
public string Categoria { get; set; } =string.Empty;
|
|
public string Departamento { get; set; } = string.Empty;
|
|
public string Impacto { get; set; } = string.Empty;
|
|
public string Urgencia { get; set; } = string.Empty;
|
|
}
|
|
}
|