Monday, 31 March 2014

Pro_User

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;

namespace Models
{
    public class Pro_UserMaster
    {
        public string Mode { get; set; }
        public int UserId { get; set; }
        public string ContactNo { get; set; }
        public string UserName { get; set; }
        public string EmailId { get; set; }
        public string Sex { get; set; }
        private DateTime _Birthdate = Convert.ToDateTime("01/01/1900");
        public DateTime Birthdate
        {
            get { return _Birthdate; }
            set { _Birthdate = value; }
        }
        public string Birthdate1 { get; set; }
        public bool Status { get; set; }
        public bool Flag { get; set; }
        public string AboutYou { get; set; }
        public string Intrestes { get; set; }
        public string Hobbies { get; set; }
        public string Favoritemovies { get; set; }
        public string LookingFor { get; set; }
        public string ProfilePic { get; set; }
        public string Latitude { get; set; }
        public string Longitude { get; set; }
        public bool IsOnline { get; set; }

        public int? page { get; set; }
        public string MultiIDs { get; set; }
        public string SortBy { get; set; }
        public string SortOrder { get; set; }
        public string SearchField { get; set; }
        public string SearchValue { get; set; }
        public string Name { get; set; }
        public string IsActive { get; set; }
        public string CreatedFrom { get; set; }
        public string CreatedTo { get; set; }
        private DateTime _CreatedOn = Convert.ToDateTime("01/01/1900");
        public DateTime CreatedOn
        {
            get { return _CreatedOn; }
            set { _CreatedOn = value; }
        }
        public string DeviceId { get; set; }
        public string DeviceType { get; set; }
        public string ContentType { get; set; }
        public int ChatCount { get; set; }
    }
}

No comments:

Post a Comment