source: extensions/PiwigoLib/PiwigoLib/Proxy/Response/PwgBaseProxyReponseRetourEnum.cs @ 7149

Last change on this file since 7149 was 7149, checked in by bayral, 14 years ago

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

File size: 465 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Xml.Serialization;
6
7namespace Com.Piwigo.Lib.Proxy.Response
8{
9    [Serializable()]
10    [XmlRoot(ElementName = "PwgBaseProxyReponseRetourEnum")]
11    internal enum PwgBaseProxyReponseRetourEnum : int
12    {
13        [XmlEnum("unknow")]
14        Unknow = 0,
15        [XmlEnum("ok")]
16        Ok = 1,
17        [XmlEnum("fail")]
18        Fail = 2
19    }
20}
Note: See TracBrowser for help on using the repository browser.