/* Options:
Date: 2025-04-19 07:03:05
Version: 8.51
Tip: To override a DTO option, remove "//" prefix before updating
BaseUrl: https://blazor-gallery.servicestack.net
//GlobalNamespace:
//MakePropertiesOptional: False
//AddServiceStackTypes: True
//AddResponseStatus: False
//AddImplicitVersion:
//AddDescriptionAsComments: True
IncludeTypes: DeletePlayer.*
//ExcludeTypes:
//DefaultImports:
*/
export interface IReturnVoid
{
createResponse(): void;
}
export interface IDeleteDb
{
}
export class Player extends AuditBase
{
public id: number;
// @Required()
public firstName: string;
public lastName: string;
public email: string;
public phoneNumbers: Phone[] = [];
public gameItems: PlayerGameItem[] = [];
public profile: Profile;
public profileId: number;
public savedLevelId: string;
public rowVersion: number;
public constructor(init?: Partial) { super(init); (Object as any).assign(this, init); }
}
export class DeletePlayer implements IReturnVoid, IDeleteDb
{
public id: number;
public constructor(init?: Partial) { (Object as any).assign(this, init); }
public getTypeName() { return 'DeletePlayer'; }
public getMethod() { return 'DELETE'; }
public createResponse() {}
}