Ignore:
Timestamp:
Oct 10, 2010, 10:45:43 PM (14 years ago)
Author:
bayral
Message:

Piwigolib is now modify for mask the implementation of proxy.
Add start version of piwigo WPF

File:
1 edited

Legend:

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

    r3827 r7149  
    1010    [Serializable()]
    1111    [XmlRoot(ElementName = "tag")]
    12     public class PwgTagProxyResponse
     12    internal class PwgTagProxyResponse
    1313    {
    1414        [XmlAttribute(AttributeName = "id")]
    15         public Int32 Id { get; set; }
     15        internal Int32 Id { get; set; }
    1616        [XmlAttribute(AttributeName = "name")]
    17         public String Name { get; set; }
     17        internal String Name { get; set; }
    1818        [XmlAttribute(AttributeName = "url_name")]
    19         public String UrlName { get; set; }
     19        internal String UrlName { get; set; }
    2020        [XmlAttribute(AttributeName = "counter")]
    21         public Int64 Counter { get; set; }
     21        internal Int64 Counter { get; set; }
    2222        [XmlAttribute(AttributeName = "url")]
    23         public String UrlTag { get; set; }
     23        internal String UrlTag { get; set; }
    2424    }
    2525
    2626    [Serializable()]
    2727    [XmlRoot(ElementName = "rsp")]
    28     public class PwgTagsProxyResponse : PwgBaseProxyReponse
     28    internal class PwgTagsProxyResponse : PwgBaseProxyReponse
    2929    {
    3030        //[XmlElement(ElementName = "tags")]
    3131        [XmlArray("tags")]
    3232        [XmlArrayItem("tag")]
    33         public PwgTagProxyResponse[] Tags { get; set; }
     33        internal PwgTagProxyResponse[] Tags { get; set; }
    3434    }
    3535}
Note: See TracChangeset for help on using the changeset viewer.