10 lines
189 B
TypeScript
10 lines
189 B
TypeScript
export interface CreateSponsorResultDTO {
|
|
sponsor: {
|
|
id: string;
|
|
name: string;
|
|
contactEmail: string;
|
|
websiteUrl?: string;
|
|
logoUrl?: string;
|
|
createdAt: Date;
|
|
};
|
|
} |