using System;
using System.Collections.Generic;
using System.Text;
using System.Xml.Serialization;
using System.IO;
using System.Runtime.Serialization;
namespace EAS.Distributed
{
///
/// 升级文件定义。
///
[Serializable]
[DataContract]
public class SmartFile
{
string fileName;
string version;
DateTime time;
///
/// 文件名称。
///
[DataMember]
public string FileName
{
get
{
return this.fileName;
}
set
{
this.fileName = value;
}
}
///
/// 版本。
///
[DataMember]
public string Version
{
get
{
return this.version;
}
set
{
this.version = value;
}
}
///
/// 时间。
///
[DataMember]
public DateTime Time
{
get
{
return this.time;
}
set
{
this.time = value;
}
}
}
}