mirror of
https://gitea.tendokyu.moe/ppc/amnet.git
synced 2026-09-22 22:28:22 +03:00
11 lines
253 B
TypeScript
11 lines
253 B
TypeScript
import {AMPhysicalCardData} from "./AMPhysicalCardData";
|
|
|
|
export interface AMCardData {
|
|
code: string;
|
|
name: string;
|
|
|
|
added: Date;
|
|
lastUsed?: Date | null;
|
|
isLimitedAimeCard: boolean;
|
|
physicalCardData?: AMPhysicalCardData | null;
|
|
} |