mirror of
https://github.com/DrizzleTime/Foxel.git
synced 2026-05-14 20:08:38 +08:00
8 lines
169 B
C#
8 lines
169 B
C#
namespace Foxel.Models.Request.Album;
|
|
|
|
public class AlbumPicturesRequest
|
|
{
|
|
public int AlbumId { get; set; }
|
|
public List<int> PictureIds { get; set; } = new();
|
|
}
|