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

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

pwg.tags.getImages support

File size: 552 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    }
23}
Note: See TracBrowser for help on using the repository browser.