24 lines
667 B
C#
24 lines
667 B
C#
![]() |
using System.ComponentModel.DataAnnotations;
|
|||
|
using Back.Common.Enums;
|
|||
|
|
|||
|
namespace Back.Data.Models
|
|||
|
{
|
|||
|
//حتما مدیر میخواد
|
|||
|
|
|||
|
public class Ticket
|
|||
|
{
|
|||
|
public int ID { get; set; }
|
|||
|
public string CompanyIDOrMobile { get; set; }
|
|||
|
public string Title { get; set; }
|
|||
|
public string CreateDate { get; set; }
|
|||
|
public string CreateTime { get; set; }
|
|||
|
public string? EndDate { get; set; }
|
|||
|
public string? EndTime { get; set; }
|
|||
|
public StatusTicket Status { get; set; }
|
|||
|
|
|||
|
#region Navigation
|
|||
|
public virtual ICollection<SubTicket> SubTickets { get; set; }
|
|||
|
#endregion
|
|||
|
}
|
|||
|
}
|