using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Tango.BL.Entities; namespace Tango.FSE.Common.Insights { public class InsightsReadyEvent : InsightReadyBase { public EventType EventType { get; set; } public String Description { get; set; } public String JobDescription { get; set; } public bool HasDescription { get { return Description != null; } } public override string ToString() { return $"{Time}: {EventType.Name}"; } } }