Add virtual scrolling card component
Add OpenAPI client(s)
This commit is contained in:
30
src/app/openapi/model/card.ts
Normal file
30
src/app/openapi/model/card.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
/**
|
||||
* dex API
|
||||
*
|
||||
*
|
||||
*
|
||||
* 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 Card {
|
||||
id?: number;
|
||||
description: string;
|
||||
pendulumDescription?: string | null;
|
||||
defense?: number | null;
|
||||
attack?: number | null;
|
||||
health?: number | null;
|
||||
level?: number | null;
|
||||
linkValue?: number | null;
|
||||
name: string;
|
||||
type: string;
|
||||
frameType: string;
|
||||
archetype?: string | null;
|
||||
race?: string | null;
|
||||
attribute?: string | null;
|
||||
decks: { [key: string]: number; };
|
||||
imageApiPath: string;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user