using System; public interface INewsMessage { string Header { get; } string Message { get; } bool Unread { get; set; } }