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

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

pwg.tags.getImages support

File size: 379 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Text;
4
5
6namespace Com.Piwigo.Lib.DTO
7{
8
9    public class PwgTag
10    {
11        public Int32  Id      { get; set; }
12        public String Name    { get; set; }
13        public String UrlName { get; set; }
14        public Int64  Counter { get; set; }
15        public Uri    UrlTag  { get; set; }
16    }
17}
Note: See TracBrowser for help on using the repository browser.