10 lines
186 B
TypeScript
Executable File
10 lines
186 B
TypeScript
Executable File
export interface SocialProfile {
|
|
id: number;
|
|
user_id: number;
|
|
username?: string;
|
|
service_name: string;
|
|
user_service_id: string;
|
|
created_at?: string;
|
|
updated_at?: string;
|
|
}
|