public struct CommentDeleteResponse: Codable {
    public let id: String // Comment ID
    public let status: String // "deleted" is the expected status here

    init(_ remote: Components.Schemas.CommentDeleteResponse) throws {
        id = remote.id ?? ""
        status = remote.status ?? ""
    }
}
