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

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

support for pwg.images.rate

File size: 790 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
26    public class PwgImageRate
27    {
28        public Int32 Count { get; set; }
29        public Double  Average { get; set; }
30        public Double Stdev { get; set; }
31    }
32}
Note: See TracBrowser for help on using the repository browser.