Init commit
This commit is contained in:
13
packages/models/src/actors/actor.model.ts
Normal file
13
packages/models/src/actors/actor.model.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
import { ActorImage } from './actor-image.model.js'
|
||||
|
||||
export interface Actor {
|
||||
id: number
|
||||
url: string
|
||||
name: string
|
||||
host: string
|
||||
followingCount: number
|
||||
followersCount: number
|
||||
createdAt: Date | string
|
||||
|
||||
avatars: ActorImage[]
|
||||
}
|
||||
Reference in New Issue
Block a user