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; } }