source: extensions/PiwigoLib/PiwigoLib/Proxy/Response/PwgSessionProxyResponse.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: 910 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Xml.Serialization;
6using Com.Piwigo.Lib.DTO;
7
8namespace Com.Piwigo.Lib.Proxy.Response
9{
10    [Serializable()]
11    [XmlRoot(ElementName = "rsp")]
12
13    internal class PwgSessionProxyResponse : PwgBaseProxyReponse
14    {
15        [XmlElement(ElementName = "username")]
16        internal String UserName { get; set; }
17        [XmlElement(ElementName = "status")]
18        internal string Status { get; set; }
19        [XmlElement(ElementName = "template")]
20        internal String Template { get; set; }
21        [XmlElement(ElementName = "theme")]
22        internal String Theme { get; set; }
23        [XmlElement(ElementName = "language")]
24        internal String Language { get; set; }
25        [XmlElement(ElementName = "charset")]
26        internal String CharSet { get; set; }   
27    }
28}
Note: See TracBrowser for help on using the repository browser.