source: extensions/PiwigoLib/PiwigoLib/DTO/PwgImage.cs @ 3835

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

Complete pwg.categories.* support

File size: 613 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5
6namespace Com.Piwigo.Lib.DTO
7{
8
9    public class PwgImage
10    {
11        public Int32 Id { get; set; }
12        public Int32 Width { get; set; }
13         public Int32 Height { get; set; }
14        public String File { get; set; }
15        public Uri UrlThunb { get; set; }
16        public Uri UrlElement { get; set; }
17        public Uri UrlHighDef { get; set; }
18        public Int64 Counter { get; set; }
19
20        public List<PwgTag> Tags { get; set; }
21
22        public List<PwgCategory> Categories { get; set; }
23
24    }
25}
Note: See TracBrowser for help on using the repository browser.