Thor/Thor.Shared/Visit/Comment.cs
2025-09-03 04:25:16 +02:00

8 lines
203 B
C#

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