10 lines
208 B
TypeScript
10 lines
208 B
TypeScript
/**
|
|
* Create sponsor input data transfer object
|
|
* Input for creating a new sponsor
|
|
*/
|
|
export interface CreateSponsorInputDto {
|
|
name: string;
|
|
logoUrl?: string;
|
|
websiteUrl?: string;
|
|
userId: string;
|
|
} |