using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// ApiContractParticipant Data Structure.
///
[Serializable]
public class ApiContractParticipant : AopObject
{
///
/// offer、acceptor
///
[XmlElement("participant_type")]
public string ParticipantType { get; set; }
///
/// 主体id,一般是user_id
///
[XmlElement("principal_id")]
public string PrincipalId { get; set; }
///
/// 主体类型B/C
///
[XmlElement("principal_type")]
public string PrincipalType { get; set; }
}
}