Ignore:
Timestamp:
Oct 11, 2010, 8:04:34 PM (14 years ago)
Author:
bayral
Message:

Connection à partir de wpf

File:
1 edited

Legend:

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

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