diff options
Diffstat (limited to 'Codemerx/Gestor.Model/Model.API/CustomerAttendance.cs')
| -rw-r--r-- | Codemerx/Gestor.Model/Model.API/CustomerAttendance.cs | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/Codemerx/Gestor.Model/Model.API/CustomerAttendance.cs b/Codemerx/Gestor.Model/Model.API/CustomerAttendance.cs new file mode 100644 index 0000000..04961f3 --- /dev/null +++ b/Codemerx/Gestor.Model/Model.API/CustomerAttendance.cs @@ -0,0 +1,37 @@ +using System;
+using System.Collections.Generic;
+using System.Runtime.CompilerServices;
+
+namespace Gestor.Model.API
+{
+ public class CustomerAttendance
+ {
+ public List<Attachment> Attachments
+ {
+ get;
+ set;
+ }
+
+ public string Body
+ {
+ get;
+ set;
+ }
+
+ public Gestor.Model.API.CustomerData CustomerData
+ {
+ get;
+ set;
+ }
+
+ public string Subject
+ {
+ get;
+ set;
+ }
+
+ public CustomerAttendance()
+ {
+ }
+ }
+}
\ No newline at end of file |