tycg_carviolation_BE/Traffic.Data/Models/NotPunish.cs

20 lines
376 B
C#
Raw Normal View History

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; }
}
}