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

Last change on this file since 11850 was 11850, checked in by bayral, 13 years ago

MAj des truc existant et debut du upload de fichier

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