import { IEntity } from './i-entity';
import { ETopics } from '../enum/topics.enum';
export interface ITopic extends IEntity {
    callbackUrl: string | null;
    deviceId: string;
    deviceName: string;
    expiresAt: number;
    tokenFcm: string | null;
    type: ETopics;
}
