blob: 8f644ceee008bcb5042628f2f3e1b6fd446bf328 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.MachineStudio.HardwareDesigner.Report
{
public class ReportModel
{
public String Collection { get; set; }
public String Component { get; set; }
public String Property { get; set; }
public String HW_1 { get; set; }
public String HW_2 { get; set; }
}
}
|