using System; using System.Collections.Generic; using System.Linq; using EDJournal; namespace NonaBGS.BGS { public class LogEntry : IComparable { private List entries = new List(); public List Entries => entries; public string Station { get; set; } public string System { get; set; } public string Faction { get; set; } /// /// Whether this entry only benefits the controlling faction or not, default: no /// public virtual bool OnlyControllingFaction { get { return false; } } public virtual int CompareTo(LogEntry other) { throw new NotImplementedException("not implemented"); } } }