namespace CSFrameworkV5.Models
|
{
|
public class TAttachFile
|
{
|
private string _DocID;
|
private byte[] _FileBody;
|
private int _FileID;
|
private string _FileName;
|
private decimal _FileSize;
|
private string _FileTitle;
|
private string _FileType;
|
|
private byte[] _IconLarge;
|
private byte[] _IconSmall;
|
private string _IsDroped;
|
|
public string DocID
|
{
|
get => _DocID;
|
set => _DocID = value;
|
}
|
|
public byte[] FileBody
|
{
|
get => _FileBody;
|
set => _FileBody = value;
|
}
|
|
public int FileID
|
{
|
get => _FileID;
|
set => _FileID = value;
|
}
|
|
public string FileName
|
{
|
get => _FileName;
|
set => _FileName = value;
|
}
|
|
public decimal FileSize
|
{
|
get => _FileSize;
|
set => _FileSize = value;
|
}
|
|
public string FileTitle
|
{
|
get => _FileTitle;
|
set => _FileTitle = value;
|
}
|
|
public string FileType
|
{
|
get => _FileType;
|
set => _FileType = value;
|
}
|
|
public byte[] IconLarge
|
{
|
get => _IconLarge;
|
set => _IconLarge = value;
|
}
|
|
public byte[] IconSmall
|
{
|
get => _IconSmall;
|
set => _IconSmall = value;
|
}
|
|
public string IsDroped
|
{
|
get => _IsDroped;
|
set => _IsDroped = value;
|
}
|
}
|
}
|