summaryrefslogtreecommitdiff
path: root/Gestor.Model/Gestor.Model.License/Instalacao.cs
blob: 20f1719513ff0cfb8ea89f1df8ae1a5f86219428 (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
using System;
using Gestor.Model.Domain.Generic;

namespace Gestor.Model.License;

public class Instalacao : DomainBase
{
	public long IdFornecedor { get; set; }

	public DateTime Data { get; set; }

	public string NomeMaquina { get; set; }

	public string UsuarioMaquina { get; set; }

	public string Aggilizador { get; set; }

	public string Gerenciador { get; set; }

	public long UsuarioId { get; set; }

	public string UsuarioSistema { get; set; }

	public DateTime UltimoAcesso { get; set; }

	public string Ip { get; set; }

	public string OSInfo { get; set; }
}