aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.BL/CacheEntities/CachedPublishedTestProject.cs
blob: 622df70c72d0f01fbeb5fd8708497db2d3c7fd0f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.ActionLogs;
using Tango.BL.DTO;

namespace Tango.FSE.BL.CacheEntities
{
    public class CachedPublishedTestProject : PublishedTestProjectDTO
    {
        [ActionLogIgnore]
        public List<PublishedTestProjectsVersionDTO> PublishedTestProjectsVersions { get; set; }

        public CachedPublishedTestProject()
        {
            PublishedTestProjectsVersions = new List<PublishedTestProjectsVersionDTO>();
        }
    }
}