mirror of
https://github.com/Art051/immich.git
synced 2025-08-11 19:29:00 +00:00
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
import { ValidateBoolean } from 'src/validation';
|
|
|
|
export class AlbumInfoDto {
|
|
@ValidateBoolean({ optional: true })
|
|
withoutAssets?: boolean;
|
|
}
|