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

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

piwigo.upload retrieve data, and ready to upload

File size: 700 bytes
Line 
1using System;
2using Com.Piwigo.Lib.DTO;
3using System.ComponentModel;
4
5namespace Com.Piwigo.Uploader.DTO
6{
7    public class SelectedListItem<T,Tid>
8    {
9        public String ShowedValue { get;set;}
10        public Tid Id             { get;set;}
11        public Boolean isSelected { get;set;}
12        public T Data             { get;set;}
13
14        public SelectedListItem()
15        { }
16    }
17
18    public sealed class SelectedCategoryListItem : SelectedListItem<PwgCategory, Int32>
19    {       
20        public SelectedCategoryListItem()
21        { }
22    }
23
24    public sealed class SelectedPwgCategoryList : BindingList<SelectedCategoryListItem>
25    {       
26    }
27
28
29
30}
Note: See TracBrowser for help on using the repository browser.