using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Data;
using System.Configuration;
//using System.Data.OleDb;
//using System.Data.SqlClient;
using System.Collections;
using Newtonsoft.Json;
using System.ComponentModel;
using System.Globalization;
namespace Model.ViewModel
{
///
/// Summary description for follower
///
public class follower
{
public follower()
{
//
// TODO: Add constructor logic here
//
}
public int? num { get; set; }
public int? f_num { get; set; }
public int? leader { get; set; }
public int? appellation_id { get; set; }
public string f_number { get; set; }
public string u_name { get; set; }
public string sex { get; set; }
public string phone { get; set; }
public string id_code { get; set; }
public string address { get; set; }
public bool? ept_self { get; set; }
public Nullable identity_type { get; set; }
public Nullable birthday { get; set; }
public Nullable birthday2 { get; set; }
public string country { get; set; }
public string country2 { get; set; }
}
public class followers_tablet
{
public followers_tablet()
{
//
// TODO: Add constructor logic here
//
}
public int? num { get; set; }
public int? f_num { get; set; }
public string type { get; set; }
public string title { get; set; }
}
}