@bitzonegaming/roleplay-engine-sdk
Version:
Roleplay Engine SDK
26 lines (25 loc) • 413 B
TypeScript
/**
*
* @export
* @interface AddLocaleRequest
*/
export interface AddLocaleRequest {
/**
*
* @type {string}
* @memberof AddLocaleRequest
*/
code: string | null;
/**
*
* @type {string}
* @memberof AddLocaleRequest
*/
defaultName: string | null;
/**
*
* @type {string}
* @memberof AddLocaleRequest
*/
iconUrl: string | null;
}