22 lines
485 B
C#
22 lines
485 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 PoliceStationViewModel
|
|
{
|
|
[JsonPropertyName("Id")]
|
|
public int Id { get; set; }
|
|
|
|
[JsonPropertyName("Area")]
|
|
public string Area { get; set; }
|
|
|
|
[JsonPropertyName("StationName")]
|
|
public string StationName { get; set; }
|
|
}
|
|
}
|