Initial commit after migration to gitea

This commit is contained in:
2026-01-18 11:27:43 +03:30
parent a21039410c
commit ea4b8eb543
196 changed files with 45567 additions and 9 deletions

View File

@@ -0,0 +1,24 @@
import { ApiProperty } from "@nestjs/swagger";
export class PlatesDto {
@ApiProperty({ type: "number" })
leftDigits: number;
@ApiProperty({ type: "string" })
centerAlphabet: string;
@ApiProperty({ type: "number" })
centerDigits: number;
@ApiProperty({ type: "number" })
ir: number;
}
export class PlatesDtoRs extends PlatesDto {
constructor(newPlate: PlatesDto) {
super();
this.leftDigits = newPlate.leftDigits;
this.centerAlphabet = newPlate.centerAlphabet;
this.centerDigits = newPlate.centerDigits;
this.ir = newPlate.ir;
}
}