-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRMFModel.cs
More file actions
34 lines (24 loc) · 1.17 KB
/
Copy pathRMFModel.cs
File metadata and controls
34 lines (24 loc) · 1.17 KB
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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace FrameworksViewerApp.Models
{
public class RMFModel
{
private int id = 0;
private string step = "";
private string taskId = "";
private string taskname = "";
private string taskdescr = null;
private List<NISTCyberSecurityFrameworkModel> nistcyberitems = null;
public int ID { get { return this.id; } set { this.id = value; } }
public string Step { get { return this.step; } set { this.step = value; } }
public string TaskID { get { return this.taskId; } set { this.taskId = value; } }
public string TaskName { get { return this.taskname; } set { this.taskname = value; } }
public List<NISTCyberSecurityFrameworkModel> NISTCyberRiskItems { get { return this.nistcyberitems; } set { this.nistcyberitems = value; } }
public string TaskDescription { get { return this.taskdescr; } set { this.taskdescr = value; } }
public IEnumerable<NISTCyberSecurityFrameworkModel> NISTCyberRiskMapping { get { return this.nistcyberitems; } }
}
}