export class TodoApiMeta {
    static readonly key: string = 'todo-api';
    static readonly channels = {
        getTodos: `${this.key}:getTodos`,
        getTodo: `${this.key}:getTodo`
    };
}