using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Traffic.Data.Models { public class NotPunish { public int Id { get; set; } public int EventTypeId { get; set; } public int NotPunishType { get; set; } public string NotPunishReason { get; set; } } }