Files
admin/src/models/batch.ts

17 lines
282 B
TypeScript
Raw Normal View History

import type { Resource } from "./resources"
import type { User } from "./user"
2026-01-05 09:14:41 +08:00
export type Batch = {
id: number
batch_no: string
prov: string
city: string
ip: string
isp: string
count: string
resource_id: string
time: string
user?: User
resource?: Resource
2026-01-05 09:14:41 +08:00
}