Mineplex2018-withcommit/Website/LOC.Core/LogEntry.cs

16 lines
262 B
C#
Raw Normal View History

2013-08-27 17:14:08 +02:00
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; }
}
}