11 lines
304 B
C#
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>();
|
|
}
|