34 lines
417 B
TypeScript
34 lines
417 B
TypeScript
/**
|
|
* 纪念日
|
|
*/
|
|
export interface IAnniversary {
|
|
id?: number;
|
|
/**
|
|
* 标题
|
|
*/
|
|
title: string;
|
|
/**
|
|
* 日期
|
|
*/
|
|
date: string;
|
|
/**
|
|
* 是否重复
|
|
*/
|
|
recurring: boolean;
|
|
/**
|
|
* 类型
|
|
*/
|
|
type: 'countUp' | 'countDown';
|
|
/**
|
|
* 分类
|
|
*/
|
|
category: string;
|
|
}
|
|
|
|
export interface IAnniversaryCategory {
|
|
name: string;
|
|
title: string;
|
|
subTitle: string;
|
|
color: string;
|
|
}
|