HistoryEntryUpdateDto: Add doc comments

Signed-off-by: David Mehren <git@herrmehren.de>
This commit is contained in:
David Mehren 2021-01-25 22:45:43 +01:00
parent 5f71e779ef
commit 3f16a398d2
No known key found for this signature in database
GPG key ID: 185982BA4C42B7C3

View file

@ -7,6 +7,9 @@
import { IsBoolean } from 'class-validator';
export class HistoryEntryUpdateDto {
/**
* True if the note should be pinned
*/
@IsBoolean()
pinStatus: boolean;
}