root/extensions/PiwigoLib/PiwigoUpload/DTO/SelectedList.cs @ 12256

Revision 12256, 0.5 KB (checked in by bayral, 20 months ago)

adding PiwigoUpload project for a simple tools for upload your photo recursively

Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using Com.Piwigo.Lib.DTO;
6
7namespace Com.Piwigo.Uploader.DTO
8{
9    public class SelectedListItem<T>
10    {
11        public String ShowedValue { get;set;}
12        public object Id          { get;set;}
13        public Boolean isSelected { get;set;}
14        public T Data             { get;set;}
15    }
16
17    public class SelectedPwgCategoryList : List<SelectedListItem<PwgCategory>>
18    {       
19    }
20
21
22
23}
Note: See TracBrowser for help on using the browser.