blob: 29bea2d071d1628ba045560559afd0b6cb2085f9 (
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
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL;
using Tango.BL.ActionLogs;
using Tango.BL.DTO;
using Tango.BL.Entities;
namespace Tango.FSE.BL.CacheEntities
{
/// <summary>
/// Represents a cached machine entity.
/// </summary>
/// <seealso cref="Tango.BL.DTO.MachineDTO" />
public class CachedMachine : MachineDTO
{
[ActionLogIgnore]
public OrganizationDTO Organization { get; set; }
[ActionLogIgnore]
public List<CatDTO> Cats { get; set; }
[ActionLogIgnore]
public new CachedConfiguration Configuration { get; set; }
[ActionLogIgnore]
public MachineVersionDTO MachineVersion { get; set; }
public CachedMachine()
{
Cats = new List<CatDTO>();
}
}
}
|