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 news
///
public class news
{
public news()
{
//
// TODO: Add constructor logic here
//
}
public string subject { get; set; }
public Nullable kind { get; set; }
public string status { get; set; }
public Nullable selltime1 { get; set; }
public Nullable selltime2 { get; set; }
public Nullable uptime1 { get; set; }
public Nullable uptime2 { get; set; }
public Nullable activity_num { get; set; }
public string activity_numTxt { get; set; }
}
public class news_kind
{
public news_kind()
{
//
// TODO: Add constructor logic here
//
}
public string kind { get; set; }
public bool inTime { get; set; }
}
}