using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Models
{
///
/// 临时附件类
///
public class Attachment
{
string name;
///
/// 附件名称
///
public string Name
{
get { return name; }
set { name = value; }
}
private string fullName;
///
/// 附件全名称
///
public string FullName
{
get { return fullName; }
set { fullName = value; }
}
}
}