16 lines
314 B
C#
16 lines
314 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 Response
|
|||
|
{
|
|||
|
[JsonPropertyName("Result")]
|
|||
|
public object Result { get; set; }
|
|||
|
}
|
|||
|
}
|