10 lines
96 B
TypeScript
10 lines
96 B
TypeScript
export class CommentDto {
|
|
author!: string
|
|
|
|
text!: string
|
|
|
|
mail!: string
|
|
|
|
url?: string
|
|
}
|