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

    r3818 r7149  
    1010    [Serializable()]
    1111    [XmlRoot(ElementName = "err")]
    12     public class PwgBaseProxyReponseError
     12    internal class PwgBaseProxyReponseError
    1313    {
    1414        [XmlAttribute(AttributeName = "code")]
    15         public Int32 Code { get; set; }
     15        internal Int32 Code { get; set; }
    1616
    1717        [XmlAttribute(AttributeName = "msg")]
    18         public String Message { get; set; }
     18        internal String Message { get; set; }
    1919    }
    2020
     
    2222    [Serializable()]
    2323    [XmlRoot(ElementName = "rsp")]
    24     public abstract class PwgBaseProxyReponse
     24    internal abstract class PwgBaseProxyReponse
    2525    {
    2626        [XmlAttribute(AttributeName="stat")]
    27         public PwgBaseProxyReponseRetourEnum Retour { get; set; }
     27        internal PwgBaseProxyReponseRetourEnum Retour { get; set; }
    2828
    2929        [XmlElement(ElementName="err")]
    30         public PwgBaseProxyReponseError Erreur { get; set; }
     30        internal PwgBaseProxyReponseError Erreur { get; set; }
    3131
    3232    }
Note: See TracChangeset for help on using the changeset viewer.