AltitudeWeb/frontend/src/app/pages/altitude/chat/objects/chat-channel.object.ts

6 lines
118 B
TypeScript
Raw Normal View History

export interface ChatChannel {
name: string;
type: 'SERVER' | 'DM' | 'PARTY' | 'GAC';
unreadMessages: number;
}