feat(ms22-p2): add UserAgent CRUD endpoints (#682)

Co-authored-by: Jason Woltje <[email protected]>
Co-committed-by: Jason Woltje <[email protected]>
This commit is contained in:
2026-03-05 02:44:19 +00:00
committed by jason.woltje
parent ee4d6fa12b
commit af56684e84
9 changed files with 284 additions and 17 deletions
@@ -0,0 +1,4 @@
import { PartialType } from "@nestjs/mapped-types";
import { CreateUserAgentDto } from "./create-user-agent.dto";
export class UpdateUserAgentDto extends PartialType(CreateUserAgentDto) {}