19 lines
385 B
C#
19 lines
385 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
|
|
namespace Aop.Api.Domain
|
|
{
|
|
/// <summary>
|
|
/// MorphoTemplate Data Structure.
|
|
/// </summary>
|
|
[Serializable]
|
|
public class MorphoTemplate : AopObject
|
|
{
|
|
/// <summary>
|
|
/// 闪蝶搭建平台模板名称
|
|
/// </summary>
|
|
[XmlElement("name")]
|
|
public string Name { get; set; }
|
|
}
|
|
}
|