34 lines
689 B
C#
34 lines
689 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Data;
|
|
using System.Configuration;
|
|
using System.Collections;
|
|
using Newtonsoft.Json;
|
|
using System.ComponentModel;
|
|
using System.Globalization;
|
|
|
|
namespace Model.ViewModel
|
|
{
|
|
/// <summary>
|
|
/// Summary description for files
|
|
/// </summary>
|
|
public class files
|
|
{
|
|
public files()
|
|
{
|
|
//
|
|
// TODO: Add constructor logic here
|
|
//
|
|
|
|
}
|
|
|
|
public Nullable<System.DateTime> reg_time1 { get; set; }
|
|
public Nullable<System.DateTime> reg_time2 { get; set; }
|
|
public string subject { get; set; }
|
|
|
|
}
|
|
|
|
|
|
} |