Label

Thẻ phân loại

Model

export type LabelData = {
    id: number;
    text: string;
    textKey: string;
    conversations: string[];
    color: string;
    offset: number;
    emoji: string;
    createTime: number;
};

Last updated