SECI  1
 All Classes Namespaces Files Functions Variables Enumerations Enumerator Properties Events
BlockGroup.cs
Go to the documentation of this file.
1 using System;
2 using System.Collections.Generic;
3 using System.Linq;
4 using System.Text;
5 
6 namespace Seci.Definitions
7 {
8  public class BlockGroup
9  {
10  public String Name;
11 
12  public BlockGroup(string name)
13  {
14  Name = name;
15  }
16 
17  public BlockGroup()
18  {
19  Name = "";
20  }
21  }
22 }