11 lines
189 B
C#

public class Component {
public int Type {get; set;}
public string Text {get; set;}
public Component(int type, string text){
Type = type;
Text = text;
}
}