24 lines
490 B
TypeScript
24 lines
490 B
TypeScript
/**
|
|
* PyroFetes
|
|
*
|
|
*
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*/
|
|
|
|
|
|
export interface ReadSoundDto {
|
|
id?: number | null;
|
|
name?: string | null;
|
|
type?: string | null;
|
|
artist?: string | null;
|
|
duration?: string | null;
|
|
kind?: string | null;
|
|
format?: string | null;
|
|
creationDate?: string | null;
|
|
soundCategoryId?: string | null;
|
|
}
|
|
|