summaryrefslogtreecommitdiff
path: root/Codemerx/Gestor.Infrastructure/Gestor.Infrastructure.Entities.Ferramentas/AgendaTelefoneDb.cs
blob: 0cd687f6abf676bd16dd9c7c5f7b392f7c729897 (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
using Gestor.Infrastructure.Entities.Generic;
using System;
using System.Runtime.CompilerServices;

namespace Gestor.Infrastructure.Entities.Ferramentas
{
	public class AgendaTelefoneDb : TelefoneBase
	{
		public virtual AgendaDb Agenda
		{
			get;
			set;
		}

		public virtual string Observacao
		{
			get;
			set;
		}

		public AgendaTelefoneDb()
		{
		}
	}
}