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.
 
 
 

15 lines
384 B

using System.Dynamic;
using Newtonsoft.Json.Linq;
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; }
}