Ignore:
Timestamp:
Sep 7, 2009, 2:46:08 PM (15 years ago)
Author:
bayral
Message:

start with pwg.catgeroies.* support

File:
1 copied

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoLib/Proxy/Response/PwgAddRequestProxyResponse.cs

    r3833 r3834  
    99{
    1010    [Serializable()]
    11     [XmlRoot(ElementName = "tag")]
    12     public class PwgTagProxyResponse
     11    [XmlRoot(ElementName = "rsp")]
     12    public class PwgAddRequestProxyResponse : PwgBaseProxyReponse
    1313    {
    14         [XmlAttribute(AttributeName = "id")]
    15         public Int32 Id { get; set; }
    16         [XmlAttribute(AttributeName = "name")]
    17         public String Name { get; set; }
    18         [XmlAttribute(AttributeName = "url_name")]
    19         public String UrlName { get; set; }
    20         [XmlAttribute(AttributeName = "counter")]
    21         public Int64 Counter { get; set; }
    22         [XmlAttribute(AttributeName = "url")]
    23         public String UrlTag { get; set; }
    24     }
     14        [XmlElement(ElementName="info")]
     15        public String Message { get; set; }
     16        [XmlElement(ElementName = "id")]
     17        public Int32 NewId { get; set; }
    2518
    26     [Serializable()]
    27     [XmlRoot(ElementName = "rsp")]
    28     public class PwgTagsProxyResponse : PwgBaseProxyReponse
    29     {
    30         //[XmlElement(ElementName = "tags")]
    31         [XmlArray("tags")]
    32         [XmlArrayItem("tag")]
    33         public PwgTagProxyResponse[] Tags { get; set; }
    3419    }
    3520}
Note: See TracChangeset for help on using the changeset viewer.