|
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 | |
|---|
| 1 | using System; |
|---|
| 2 | using System.Collections.Generic; |
|---|
| 3 | using System.Linq; |
|---|
| 4 | using System.Text; |
|---|
| 5 | using Com.Piwigo.Lib.DTO; |
|---|
| 6 | |
|---|
| 7 | namespace 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 | } |
|---|