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

11 lines
304 B
C#

namespace Thor.Shared.Inspect;
public class Attachment
{
public string Id { get; set; }
public DateTime When { get; set; } = DateTime.Now;
public string Author { get; set; } = "";
public string Name { get; set; } = "";
public byte[] Content { get; set; } = Array.Empty<byte>();
}