Files
moadiran/Back/Data/Models/Ticket.cs

24 lines
661 B
C#
Raw Permalink Normal View History

2024-03-30 15:10:36 +03:30
using System.ComponentModel.DataAnnotations;
2024-05-01 15:42:21 +03:30
using Shared.DTOs;
2024-03-30 15:10:36 +03:30
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
}
}