Studio is an interface representing a studio. It includes the id and name each having their own properties.

interface Studio {
    id: number;
    name: string;
}

Properties

Properties

id: number

id is a number representing the id of the studio.

name: string

name is a string representing the name of the studio.