using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// NotaryFileVO Data Structure. /// [Serializable] public class NotaryFileVO : AopObject { /// /// 文件http地址 /// [XmlElement("file_addr")] public string FileAddr { get; set; } /// /// 合同名称 /// [XmlElement("file_name")] public string FileName { get; set; } } }