You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
364 B

10 months ago
using ConsoleApp1.intf;
namespace ConsoleApp1.pubsub
{
public class Message : IMessage
{
public DateTime EventDate { get; set; }
public string Category { get; set; }
public string Text { get; set; }
public override string ToString()
{
return $"[{EventDate:D}] [{Category}] {Text}";
}
}
}