8 lines
205 B
C#
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; } = "";
|
|
} |