diff --git a/src/auth/dto/update-token-response.dto.ts b/src/auth/dto/update-token-response.dto.ts index 2fa8b30..d7dc03f 100644 --- a/src/auth/dto/update-token-response.dto.ts +++ b/src/auth/dto/update-token-response.dto.ts @@ -1,4 +1,3 @@ import { UpdateTokenDto } from "./update-token.dto"; -export class UpdateTokenResponseDto extends UpdateTokenDto { -} \ No newline at end of file +export class UpdateTokenResponseDto extends UpdateTokenDto {} diff --git a/src/schedule/dto/v1/cache-status.dto.ts b/src/schedule/dto/v1/cache-status.dto.ts index d2e0659..afb8400 100644 --- a/src/schedule/dto/v1/cache-status.dto.ts +++ b/src/schedule/dto/v1/cache-status.dto.ts @@ -16,4 +16,4 @@ export class CacheStatusDto extends V2CacheStatusDto { } } } -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-cache-status.dto.ts b/src/schedule/dto/v1/v1-cache-status.dto.ts index 1a483b1..95f387e 100644 --- a/src/schedule/dto/v1/v1-cache-status.dto.ts +++ b/src/schedule/dto/v1/v1-cache-status.dto.ts @@ -18,4 +18,4 @@ export class V1CacheStatusDto { @IsHash("sha1") @Expose() cacheHash: string; -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-group.dto.ts b/src/schedule/dto/v1/v1-group.dto.ts index c884a2b..a586f19 100644 --- a/src/schedule/dto/v1/v1-group.dto.ts +++ b/src/schedule/dto/v1/v1-group.dto.ts @@ -22,4 +22,4 @@ export class V1GroupDto { this.name = name; this.days = []; } -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-lesson.dto.ts b/src/schedule/dto/v1/v1-lesson.dto.ts index cf4f04d..c974bf9 100644 --- a/src/schedule/dto/v1/v1-lesson.dto.ts +++ b/src/schedule/dto/v1/v1-lesson.dto.ts @@ -73,4 +73,4 @@ export class V1LessonDto { this.cabinets = cabinets; this.teacherNames = teacherNames; } -} \ No newline at end of file +} diff --git a/src/schedule/dto/v1/v1-schedule-group-names.dto.ts b/src/schedule/dto/v1/v1-schedule-group-names.dto.ts index 100f78e..bf5b599 100644 --- a/src/schedule/dto/v1/v1-schedule-group-names.dto.ts +++ b/src/schedule/dto/v1/v1-schedule-group-names.dto.ts @@ -8,4 +8,4 @@ export class V1ScheduleGroupNamesDto { }) @IsArray() names: Array; -} \ No newline at end of file +} diff --git a/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts b/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts index 6994be0..8dfe520 100644 --- a/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts +++ b/src/schedule/dto/v2/v2-lesson-sub-group.dto.ts @@ -19,7 +19,7 @@ export class V2LessonSubGroupDto { /** * ФИО преподавателя - * @example "Хомченко Н.Е." + * @example "Хомченко Н. Е." */ @IsString() teacher: string;