Mineplex2018-withcommit/Website/LOC.Core/LogEntry.cs
Jonathan Williams 3fb52c5c71 Initial Commit
2013-08-27 08:14:08 -07:00

16 lines
262 B
C#

namespace LOC.Core
{
using System;
public class LogEntry
{
public int LogEntryId { get; set; }
public DateTime Date { get; set; }
public string Category { get; set; }
public string Message { get; set; }
}
}