Website/interfaces/company.ts

15 lines
184 B
TypeScript
Raw Normal View History

2024-09-01 10:34:33 +00:00
import { User } from './user';
export interface Company {
id: BigInt;
owners: User[];
name: string;
slogan: string;
logo: string;
createdAt: Date;
updatedAt: Date;
2024-09-01 10:34:33 +00:00
}