You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
333 B
12 lines
333 B
namespace Tiobon.Core.Model;
|
|
|
|
public class Attachment
|
|
{
|
|
public string AttachFileExtension { get; set; }
|
|
public long AttachFileSize { get; set; }
|
|
public int AttachmentID { get; set; }
|
|
public string AttachmentName { get; set; }
|
|
public string RelativePath { get; set; }
|
|
public string RemarkSz { get; set; }
|
|
|
|
} |