summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Model/Model.API/CustomerAttendance.cs
blob: 04961f31f8ca489bcae02027075e9531e2199168 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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()
		{
		}
	}
}