Interface IGenshinDiaryBase

Interface representing the base structure of a Genshin diary.

interface IGenshinDiaryBase {
    data_month: number;
    nickname: string;
    optional_month: number[];
    region: string;
    uid: number;
}

Hierarchy (view full)

Properties

data_month: number

The current month's data for the diary.

nickname: string

The nickname associated with the diary.

optional_month: number[]

An array of optional months for the diary.

region: string

The region of the diary.

uid: number

The unique identifier of the diary.