export interface CreateWebapiCommand { title: string; token: string; expiry?: Date; } export interface UpdateWebapiCommand { id: number; title: string; expiry?: Date; } export interface UpdateLastUsageWebapiCommand { id: number; } export interface DeleteWebapiCommand { id: number; }