source: extensions/PiwigoLib/PiwigoLib/Proxy/Response/PwgAddRequestProxyResponse.cs @ 3834

Last change on this file since 3834 was 3834, checked in by bayral, 15 years ago

start with pwg.catgeroies.* support

File size: 514 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Xml.Serialization;
6using Com.Piwigo.Lib.DTO;
7
8namespace Com.Piwigo.Lib.Proxy.Response
9{
10    [Serializable()]
11    [XmlRoot(ElementName = "rsp")]
12    public class PwgAddRequestProxyResponse : PwgBaseProxyReponse
13    {
14        [XmlElement(ElementName="info")]
15        public String Message { get; set; }
16        [XmlElement(ElementName = "id")]
17        public Int32 NewId { get; set; }
18
19    }
20}
Note: See TracBrowser for help on using the repository browser.