Thor/Thor.Shared/EntryBase.cs
2025-03-21 07:19:48 +01:00

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();
}
}