mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-09-23 04:43:35 +08:00
14 lines
384 B
C#
14 lines
384 B
C#
![]() |
using System.Collections.Generic;
|
||
|
|
||
|
namespace Orchard.XmlRpc.Models {
|
||
|
public class XRpcMethodResponse {
|
||
|
public XRpcMethodResponse() { Params = new List<XRpcData>(); }
|
||
|
|
||
|
public IList<XRpcData> Params { get; set; }
|
||
|
|
||
|
public XRpcMethodResponse Add<T>(T value) {
|
||
|
Params.Add(XRpcData.For(value));
|
||
|
return this;
|
||
|
}
|
||
|
}
|
||
|
}
|