source: extensions/PiwigoLib/PiwigoLib/Proxy/Response/PwgTagsProxyResponse.cs @ 3816

Last change on this file since 3816 was 3816, checked in by bayral, 15 years ago

Initial import

File size: 896 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    public class PwgSessionProxyResponse : PwgBaseProxyReponse
14    {
15        [XmlElement(ElementName = "username")]
16        public String UserName { get; set; }
17        [XmlElement(ElementName = "status")]
18        public string Status { get; set; }
19        [XmlElement(ElementName = "template")]
20        public String Template { get; set; }
21        [XmlElement(ElementName = "theme")]
22        public String Theme { get; set; }
23        [XmlElement(ElementName = "language")]
24        public String Language { get; set; }
25        [XmlElement(ElementName = "charset")]
26        public String CharSet { get; set; }   
27    }
28}
Note: See TracBrowser for help on using the repository browser.