minime/src/chunithm/model/userCharacter.ts
Tau d1d63e1ef9 chunithm: Initial implementation code drop
No cleaner development history than this exists. It's difficult to
methodically design something when you don't yet know what it is
you're designing.
2019-11-06 17:29:07 -05:00

12 lines
222 B
TypeScript

export interface UserCharacterItem {
characterId: number;
playCount: number;
level: number;
skillId: number;
friendshipExp: number;
isValid: boolean;
isNewMark: boolean;
param1: number;
param2: number;
}