Files
SSG_Automation_Solution/SSG_Automation_Solution/Data/VariablesVO.cs
2026-04-01 19:57:37 +09:00

26 lines
498 B
C#

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; }
}
}
}