using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel.DataAnnotations;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace ACLib.P2.AppContext.Models
|
|
{
|
|
public partial class AC_Tickets
|
|
{
|
|
[Key]
|
|
public int TicketID { get; set; }
|
|
public string Status { get; set; }
|
|
public string Subject { get; set; }
|
|
public string Description { get; set; }
|
|
public string Details { get; set; }
|
|
//public string Category { get; set; }
|
|
public int TicketCategoryID { get; set; }
|
|
public string Tags { get; set; }
|
|
//public int AssignedToUserID { get; set; }
|
|
public string Priority { get; set; }
|
|
public string Usertype { get; set; }
|
|
public int CreatedByUserID { get; set; }
|
|
public string Reporter { get; set; }
|
|
public bool IsAlive { get; set; }
|
|
public string Campus { get; set; }
|
|
public string Room { get; set; }
|
|
public Nullable<System.DateTime> CreateDate { get; set; }
|
|
}
|
|
}
|