aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.UI/BugReporting/SystemInformationModel.cs
blob: bb11cef6f781675445b68221ce17c5ea3870690a (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.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;

namespace Tango.FSE.UI.BugReporting
{
    public class SystemInformationModel
    {
        public String FSEVersion { get; set; }
        public String PPCVersion { get; set; }
        public String EmbeddedVersion { get; set; }
        public String UserName { get; set; }
        public String UserEmail { get; set; }
        public String HostName { get; set; }
        public String OsVersion { get; set; }
        public Machine Machine { get; set; }
        public String Description { get; set; }
        public String Comments { get; set; }
        public String Exception { get; set; }

        public String RAM { get; set; }
        public String Processor { get; set; }
        public String GPU { get; set; }
        public String FreeSpace { get; set; }
        public String Architecure { get; set; }

        public List<ActionModel> Actions { get; set; }

        public SystemInformationModel()
        {
            Actions = new List<ActionModel>();
        }
    }
}