aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/FSE/Tango.FSE.Common/BugReporting/BugAttachement.cs
blob: 71a6cd9f70f8ced3baf41973120588f3eb3b8b18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.FSE.Common.BugReporting
{
    public class BugAttachement
    {
        public String Name { get; set; }
        public String Description { get; set; }
        public String File { get; set; }
    }
}