14 lines
292 B
C#
14 lines
292 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace Traffic.Data.ViewModels
|
|
{
|
|
public class LoginViewModel
|
|
{
|
|
[JsonPropertyName("Account")]
|
|
public string Account { get; set; }
|
|
|
|
[JsonPropertyName("Password")]
|
|
public string Password { get; set; }
|
|
}
|
|
}
|