diff options
Diffstat (limited to 'Gestor.Model/Gestor.Model.API/Attachment.cs')
| -rw-r--r-- | Gestor.Model/Gestor.Model.API/Attachment.cs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Gestor.Model/Gestor.Model.API/Attachment.cs b/Gestor.Model/Gestor.Model.API/Attachment.cs new file mode 100644 index 0000000..79389f2 --- /dev/null +++ b/Gestor.Model/Gestor.Model.API/Attachment.cs @@ -0,0 +1,10 @@ +namespace Gestor.Model.API; + +public class Attachment +{ + public string Description { get; set; } + + public string Extension { get; set; } + + public byte[] File { get; set; } +} |