using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SSG_Automation_Solution.Data { public class VariablesVO { private string tag; private string text; public string Tag { get { return tag; } set { tag = value; } } public string Text { get { return text; } set { text = value; } } } }