Ignore:
Timestamp:
Sep 2, 2011, 5:08:48 PM (13 years ago)
Author:
bayral
Message:

start local ctageory and local image for import

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoWpf/DTO/LocalPwgCategory.cs

    r12016 r12038  
    3333        }
    3434
     35        private String _localDir;
     36        public String LocalDir
     37        {
     38            set { _localDir = value; OnPropertyChanged("LocalDir"); }
     39            get { return _localDir; }
     40        }
     41
    3542        private Int32 _upperCatId;
    3643        public Int32 UpperCatId
     
    3946            get { return _upperCatId; }
    4047        }
    41        
     48
     49        private LocalPwgCategoryListWPF _subCategories;
     50        public LocalPwgCategoryListWPF SubCategories
     51        {
     52            set { _subCategories = value; OnPropertyChanged("SubCategories"); }
     53            get { return _subCategories; }
     54        }
     55
     56        private LocalPwgImageListWPF _localImages;
     57        public LocalPwgImageListWPF LocalImages
     58        {
     59            set { _localImages = value; OnPropertyChanged("LocalImages"); }
     60            get { return _localImages; }
     61        }
     62
    4263        public event PropertyChangedEventHandler PropertyChanged;
    4364        protected void OnPropertyChanged(String info)
Note: See TracChangeset for help on using the changeset viewer.