22 lines
557 B
C#
22 lines
557 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 PageData
|
|
{
|
|
[JsonPropertyName("Id")]
|
|
public int Id { get; set; }
|
|
[JsonPropertyName("PageModule")]
|
|
public string PageModule { get; set; }
|
|
[JsonPropertyName("PageName")]
|
|
public string PageName { get; set; }
|
|
[JsonPropertyName("PageUrl")]
|
|
public string PageUrl { get; set; }
|
|
}
|
|
}
|