summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.API/Attachment.cs
blob: 79389f2e20471fd28577675b9ab5a39d2e5bc3b7 (plain)
1
2
3
4
5
6
7
8
9
10
namespace Gestor.Model.API;

public class Attachment
{
	public string Description { get; set; }

	public string Extension { get; set; }

	public byte[] File { get; set; }
}