LoginModel.cs 373 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Newtonsoft.Json;

namespace HHWCS.Model.ClientModel
{
    public class LoginModel
    {
        [JsonProperty("code")]
        public string Code { get; set; }
        [JsonProperty("password")]
        public string Password { get; set; }
    }
}