using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// LawsuitPersonRecord Data Structure.
///
[Serializable]
public class LawsuitPersonRecord : AopObject
{
///
/// 曝光台列表
///
[XmlArray("bgt_list")]
[XmlArrayItem("ep_info")]
public List BgtList { get; set; }
///
/// 裁判文书列表
///
[XmlArray("cpws_list")]
[XmlArrayItem("ep_info")]
public List CpwsList { get; set; }
///
/// 失信公告列表
///
[XmlArray("sxgg_list")]
[XmlArrayItem("ep_info")]
public List SxggList { get; set; }
///
/// 执行公告列表
///
[XmlArray("zxgg_list")]
[XmlArrayItem("ep_info")]
public List ZxggList { get; set; }
}
}