31 lines
1.2 KiB
C#
31 lines
1.2 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Data.Entities
|
|
{
|
|
public partial class PhOH_Tickets
|
|
{
|
|
[Key]
|
|
public System.Guid TicketId { get; set; }
|
|
public string Titulo { get; set; } = string.Empty;
|
|
public string Descripcion { 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 Nullable<System.DateTime> FechaEjecucion { get; set; }
|
|
public string Categoria { get; set; } = string.Empty;
|
|
public string Comentarios { 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;
|
|
public Nullable<bool> EsSolicitudCliente { get; set; }
|
|
public string AdjuntoArchivo { get; set; } = string.Empty;
|
|
}
|
|
}
|