source: extensions/PiwigoLib/PiwigoLib/IService/IPwgImagesService.cs @ 11872

Last change on this file since 11872 was 11872, checked in by bayral, 13 years ago
File size: 660 bytes
Line 
1using System;
2
3namespace Com.Piwigo.Lib.IService
4{
5    public interface IPwgImagesService
6    {
7        Com.Piwigo.Lib.DTO.PwgImageRate RateImage(Int32 imageId, Int32 imageRate);
8        Com.Piwigo.Lib.DTO.PwgImageAdded addImageByMultiPartForm(System.IO.FileInfo fileImage, Int32? imageId, Int32? categoryId, String imageName, String imageAuthor, String imageComment, Int32? imageLevel, System.Collections.Generic.List<Com.Piwigo.Lib.DTO.PwgTag> imageTags);
9        Boolean DeleteImage(Int32 imageId, String SecurityToken);
10        Com.Piwigo.Lib.DTO.PwgImageInfo getImageInfo(Int32 imageId, Int32? commentPage, Int32? commentsPerPage);
11    }
12}
Note: See TracBrowser for help on using the repository browser.