device.dto.ts 208 B

12345678910
  1. import { Pagination } from './common.dto'
  2. export interface NoticeDeviceQuery {
  3. id: string
  4. platform: string
  5. version: string
  6. deviceInfo: string
  7. }
  8. export interface ListDeviceBody extends Pagination {}