31 lines
766 B
C#
31 lines
766 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Text.Json.Serialization;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Traffic.Data.ViewModels
|
|
{
|
|
public class NotPunishViewModel
|
|
{
|
|
[JsonPropertyName("Id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("EventTypeId")]
|
|
public int EventTypeId { get; set; }
|
|
|
|
[JsonPropertyName("EventType")]
|
|
public string EventType { get; set; }
|
|
|
|
[JsonPropertyName("EventName")]
|
|
public string EventName { get; set; }
|
|
|
|
[JsonPropertyName("NotPunishType")]
|
|
public int NotPunishType { get; set; }
|
|
|
|
[JsonPropertyName("NotPunishReason")]
|
|
public string NotPunishReason { get; set; }
|
|
}
|
|
}
|