JSON → C# / TypeScript / Java
JSON örneğinden tip tanımları üret.
export interface Address {
city: string;
zip: string;
}
export interface Root {
id: number;
name: string;
active: boolean;
tags: string[];
address: Address;
}JSON örneğinden tip tanımları üret.
export interface Address {
city: string;
zip: string;
}
export interface Root {
id: number;
name: string;
active: boolean;
tags: string[];
address: Address;
}