Files
2022-05-17 01:21:10 +02:00

13 lines
242 B
C#

using System;
using System.Collections.Generic;
using System.Text;
using HaXMLReader.Interfaces;
namespace HaXMLReader.EvArgs
{
public class Text : EventArgs, IReaderEvArg
{
public string Value { get; set; } = "";
}
}