namespace AndroidApi.Models.ViewModel
{
    public class AccountViewModel : StatusCodeViewModel
    {
        [JsonProperty("userid")]
        public int UserId { get; set; }

        [JsonProperty("user")]
        public string User { get; set; }

        [JsonProperty("email")]
        public string Email { get; set; }

        [JsonProperty("password")]
        public string Password { get; set; }

        [JsonProperty("isactive")]
        public bool IsActive { get; set; }

    }
}