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

8 lines
205 B
C#

namespace Thor.Shared.Inspect;
public class Comment
{
public DateTime When { get; set; } = DateTime.Now;
public string Author { get; set; } = "";
public string Content { get; set; } = "";
}