13 lines
193 B
TypeScript
13 lines
193 B
TypeScript
![]() |
export interface CountAll<T> {
|
||
|
rows: T[]
|
||
|
count: number
|
||
|
}
|
||
|
|
||
|
export interface BasicModel {
|
||
|
createdAt: string
|
||
|
createdBy: string
|
||
|
updatedAt: string
|
||
|
updatedBy: string
|
||
|
deleted: boolean
|
||
|
}
|