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/PwgCategoriesProxyResponse.cs

    r3834 r7149  
    1010    [Serializable()]
    1111    [XmlRoot(ElementName = "category")]
    12     public class PwgCategoryProxyResponse
     12    internal class PwgCategoryProxyResponse
    1313    {
    1414        [XmlAttribute(AttributeName = "id")]
    15         public Int32 Id { get; set; }
     15        internal Int32 Id { get; set; }
    1616        [XmlElement(ElementName = "uppercats")]
    17         public String UpperCategoryId { get; set; }
     17        internal String UpperCategoryId { get; set; }
    1818        [XmlElement (ElementName = "name")]
    19         public String Name { get; set; }
     19        internal String Name { get; set; }
    2020        [XmlAttribute(AttributeName = "url")]
    21         public String Url { get; set; }
     21        internal String Url { get; set; }
    2222        [XmlAttribute(AttributeName = "nb_images")]
    23         public Int64 ImagesCount { get; set; }
     23        internal Int64 ImagesCount { get; set; }
    2424        [XmlAttribute(AttributeName = "total_nb_images")]
    25         public Int64 DeepImagesCount { get; set; }
     25        internal Int64 DeepImagesCount { get; set; }
    2626        [XmlAttribute(AttributeName = "nb_categories")]
    27         public Int64 SubCategoriesCount { get; set; }
     27        internal Int64 SubCategoriesCount { get; set; }
    2828        [XmlAttribute(AttributeName = "max_date_last")]
    29         public String LastDate { get; set; }
     29        internal String LastDate { get; set; }
    3030    }
    3131
    3232    [Serializable()]
    3333    [XmlRoot(ElementName = "rsp")]
    34     public class PwgCategoriesProxyResponse : PwgBaseProxyReponse
     34    internal class PwgCategoriesProxyResponse : PwgBaseProxyReponse
    3535    {
    3636        [XmlArray("categories")]
    3737        [XmlArrayItem("category")]
    38         public PwgCategoryProxyResponse[] Categories { get; set; }
     38        internal PwgCategoryProxyResponse[] Categories { get; set; }
    3939    }
    4040}
Note: See TracChangeset for help on using the changeset viewer.