....
This commit is contained in:
23
Back/Data/Models/SubTicket.cs
Normal file
23
Back/Data/Models/SubTicket.cs
Normal file
@@ -0,0 +1,23 @@
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Back.Common.Enums;
|
||||
|
||||
namespace Back.Data.Models
|
||||
{
|
||||
|
||||
public class SubTicket
|
||||
{
|
||||
public int ID { get; set; }
|
||||
public int TicketID { get; set; }
|
||||
public string Text { get; set; }
|
||||
public string Date { get; set; }
|
||||
public string Time { get; set; }
|
||||
public SideType Type { get; set; }
|
||||
|
||||
#region Navigation
|
||||
[ForeignKey("TicketID")]
|
||||
public virtual Ticket Ticket { get; set; }
|
||||
#endregion
|
||||
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user