source: extensions/PiwigoLib/PiwigoLib/DTO/PwgCategory.cs @ 3834

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

start with pwg.catgeroies.* support

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