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

11 lines
302 B
C#

namespace Thor.Shared.Visit;
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>();
}