Ignore:
Timestamp:
Oct 3, 2011, 5:09:51 PM (13 years ago)
Author:
bayral
Message:

rename category to Albums

File:
1 edited

Legend:

Unmodified
Added
Removed
  • extensions/PiwigoLib/PiwigoUpload/DTO/LocalPwgImage.cs

    r12262 r12336  
    1414    {
    1515        //FileInfo highResFile, FileInfo lowResFile, FileInfo thumbFile, String imageName, String imageAuthor, DateTime creationDate,
    16         //    String authorComment, List<String> lstCategories, List<String> lstTags, PwgConfidentLevelEnum? confidentLevel
     16        //    String authorComment, List<String> lstAlbums, List<String> lstTags, PwgConfidentLevelEnum? confidentLevel
    1717
    18         private Int32 _id;
    19         public Int32 Id
     18        private Int32? _id;
     19        public Int32? Id
    2020        {
    2121            set { _id = value; OnPropertyChanged("Id"); }
    2222            get { return _id; }
     23        }
     24
     25        private String _author;
     26        public String Author
     27        {
     28            set { _author = value; OnPropertyChanged("Author"); }
     29            get { return _author; }
    2330        }
    2431
     
    4451        }
    4552
    46         private Int32 _upperCatId;
    47         public Int32 UpperCatId
     53        private Int32? _upperCatId;
     54        public Int32? UpperCatId
    4855        {
    4956            set { _upperCatId = value; OnPropertyChanged("UpperCatId"); }
     
    5865        }
    5966
    60         private PwgConfidentLevelEnum _confidentialLevel;
    61         public PwgConfidentLevelEnum ConfidentialLevel
     67        private PwgConfidentLevelEnum? _confidentialLevel;
     68        public PwgConfidentLevelEnum? ConfidentialLevel
    6269        {
    6370            set { _confidentialLevel = value; OnPropertyChanged("ConfidentialLevel"); }
Note: See TracChangeset for help on using the changeset viewer.