export interface IMotdTime {
  from: number | null;
  to: number | null;
}

export class MotdResponseDto {
  constructor(
    public readonly time: IMotdTime | null,
    public readonly body: string
  ) {}
}
