source: extensions/PiwigoLib/PiwigoLib/DTO/PwgCategory.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: 620 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4
5namespace Com.Piwigo.Lib.DTO
6{
7
8    public class PwgCategory
9    {
10        public static Int32 RootCategoryId = 0;
11
12        public Int32        Id { get; set; }
13        public List<Int32>  UpperCategoriesId { 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        SubCategoriesCount { get; set; }
19        public DateTime     LastDate { get; set; }
20    }
21}
Note: See TracBrowser for help on using the repository browser.