this is common database context (using Microsoft.EntityFramework) which can be used by another class library.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

31 lines
1.0 KiB

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; }
}
}