this repo has no description
at main 14 lines 507 B view raw
1import 'package:freezed_annotation/freezed_annotation.dart'; 2 3part 'delete_comment_request.freezed.dart'; 4part 'delete_comment_request.g.dart'; 5 6/// Request model for deleting a comment. 7/// See lexicon: social.grain.comment.deleteComment 8@freezed 9class DeleteCommentRequest with _$DeleteCommentRequest { 10 const factory DeleteCommentRequest({required String uri}) = _DeleteCommentRequest; 11 12 factory DeleteCommentRequest.fromJson(Map<String, dynamic> json) => 13 _$DeleteCommentRequestFromJson(json); 14}