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