using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Traffic.Data.Models { public class Repair { public int Id { get; set; } public int QuestionType { get; set; } public string SendTo { get; set; } public string Title { get; set; } public string Content { get; set; } } }