source: extensions/PiwigoLib/PiwigoLib/DTO/PwgImage.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: 770 bytes
Line 
1using System;
2using System.Collections.Generic;
3
4
5namespace Com.Piwigo.Lib.DTO
6{
7
8    public class PwgImage
9    {
10        public Int32 Id { get; set; }
11        public Int32 Width { get; set; }
12        public Int32 Height { get; set; }
13        public String File { get; set; }
14        public Uri UrlThunb { get; set; }
15        public Uri UrlElement { get; set; }
16        public Uri UrlHighDef { get; set; }
17        public Int64 Counter { get; set; }
18
19        public List<PwgTag> Tags { get; set; }
20
21        public List<PwgCategory> Categories { get; set; }
22
23    }
24
25    public class PwgImageRate
26    {
27        public Int32 Count { get; set; }
28        public Double  Average { get; set; }
29        public Double Stdev { get; set; }
30    }
31}
Note: See TracBrowser for help on using the repository browser.