LoginModel.cs
343 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using Newtonsoft.Json;
namespace HHECS.API.Models
{
public class LoginModel
{
[JsonProperty("userCode")]
public string UserCode { get; set; }
[JsonProperty("password")]
public string Password { get; set; }
}
}