mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
17 lines
436 B
TypeScript
17 lines
436 B
TypeScript
import { ApiProperty } from '@nestjs/swagger';
|
|
|
|
export class UsageByUserDto {
|
|
@ApiProperty({ type: 'string' })
|
|
userId!: string;
|
|
@ApiProperty({ type: 'string' })
|
|
userFirstName!: string;
|
|
@ApiProperty({ type: 'string' })
|
|
userLastName!: string;
|
|
@ApiProperty({ type: 'integer' })
|
|
photos!: number;
|
|
@ApiProperty({ type: 'integer' })
|
|
videos!: number;
|
|
@ApiProperty({ type: 'integer', format: 'int64' })
|
|
usage!: number;
|
|
}
|