Files
bs-manager/src/shared/models/supporters/supporter.interface.ts
T
2022-09-09 02:11:15 +02:00

8 lines
168 B
TypeScript

import { SupporterType } from "./supporter.type";
export interface Supporter {
username: string,
type?: SupporterType,
link?: string,
image?: string,
}