mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-12 02:20:28 +08:00
13 lines
306 B
C#
13 lines
306 B
C#
using Foxel.Models.DataBase;
|
|
using Foxel.Models.Response.Album;
|
|
using Foxel.Models.Response.Picture;
|
|
|
|
namespace Foxel.Services.Mapping
|
|
{
|
|
public interface IMappingService
|
|
{
|
|
AlbumResponse MapAlbumToResponse(Album album);
|
|
PictureResponse MapPictureToResponse(Picture picture);
|
|
}
|
|
}
|