source: extensions/PiwigoLib/PiwigoUpload/DTO/SelectedList.cs @ 12256

Last change on this file since 12256 was 12256, checked in by bayral, 13 years ago

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

File size: 513 bytes
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 repository browser.