source: extensions/PiwigoLib/PiwigoLib/DTO/PwgSession.cs @ 8869

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

Initial import

File size: 639 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5
6namespace Com.Piwigo.Lib.DTO
7{
8
9    public class PwgSession
10    {
11        public Boolean IsConnected {
12            get { return this.Status != PwgSessionStatusEnum.Guest; }
13        }
14 
15        public String UserName              { get; set; }
16        public PwgSessionStatusEnum Status  { get; set; }
17        public String Template              { get; set; }
18        public String Theme                 { get; set; }
19        public String Language              { get; set; }
20        public String CharSet               { get; set; }   
21    }
22}
Note: See TracBrowser for help on using the repository browser.