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