15 lines
314 B
C#
15 lines
314 B
C#
namespace Thor.Shared;
|
|
|
|
public class EntryBase
|
|
{
|
|
public string Identifier { get; set; }
|
|
public string Author { get; set; }
|
|
public DateTime When { get; set; } = DateTime.Now;
|
|
public string Target { get; set; }
|
|
|
|
public EntryBase()
|
|
{
|
|
Identifier = Guid.NewGuid().ToString();
|
|
}
|
|
}
|