using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// OpusCreateResponse Data Structure.
///
[Serializable]
public class OpusCreateResponse : AopObject
{
///
/// 作品外部id
///
[XmlElement("external_opus_id")]
public string ExternalOpusId { get; set; }
///
/// 作品id
///
[XmlElement("opus_id")]
public string OpusId { get; set; }
}
}