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

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

Connection à partir de wpf

File size: 463 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    public 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.