User.cs 933 Bytes

using System;
using System.Collections.Generic;

namespace Quiz.Models
{
    public class User
    {
        public int ID { get; set; }
        public string SchoolName { get; set; }
        public string ClassName { get; set; }
        public string StudentName { get; set; }
        public string ParentName { get; set; }
        public string PhoneName { get; set; }
        public int OrderId { get; set; }
        public int State { get; set; }
        public DateTime Intime { get; set; }

        public int UserType { get; set; }

        public string schoolType { get; set; }
        public string region { get; set; }
    }
    public class sendDC {

        public string Content { get; set; }
        public List<string> Mobile { get; set; }
    }
    public class resetModel
    {
        public object data { get; set; }
        public int status { get; set; }
        public string message { get; set; }
    }
}