Ignore:
Timestamp:
Sep 17, 2009, 11:14:31 PM (15 years ago)
Author:
bayral
Message:

support for pwg.images.rate

File:
1 edited

Legend:

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

    r3835 r3861  
    88namespace Com.Piwigo.Lib.Proxy.Response
    99{
     10
     11    [Serializable()]
     12    [XmlRoot(ElementName = "rsp")]
     13    public class PwgImageRateProxyResponse : PwgBaseProxyReponse
     14    {
     15        [XmlElement("count")]
     16        public Int32 Count { get; set; }
     17        [XmlElement("average")]
     18        public String Average { get; set; }
     19        [XmlElement("stdev")]
     20        public String Stdev { get; set; }
     21    }
     22
    1023    [Serializable()]
    1124    [XmlRoot(ElementName = "categorie")]
     
    6376        public PwgImageListProxyResponse ImageList { get; set; }
    6477    }
     78
    6579}
Note: See TracChangeset for help on using the changeset viewer.