source: extensions/PiwigoLib/PiwigoLib/DTO/PwgAlbum.cs @ 12336

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

rename category to Albums

File size: 606 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4
5namespace Com.Piwigo.Lib.DTO
6{
7
8    public class PwgAlbum
9    {
10        public static Int32 RootAlbumId = 0;
11
12        public Int32        Id { get; set; }
13        public List<Int32>  UpperAlbumsId { get; set; }
14        public String       Name { get; set; }
15        public Uri          Url { get; set; }
16        public Int64        ImagesCount { get; set; }
17        public Int64        DeepImagesCount { get; set; }
18        public Int64        SubAlbumsCount { get; set; }
19        public DateTime     LastDate { get; set; }
20    }
21}
Note: See TracBrowser for help on using the repository browser.