2019-02-04 19:30:33 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Xml;
|
|
|
|
|
|
|
|
|
|
namespace RobloxFiles.XmlFormat
|
|
|
|
|
{
|
|
|
|
|
public interface IXmlPropertyToken
|
|
|
|
|
{
|
|
|
|
|
string Token { get; }
|
2019-05-17 12:08:06 +00:00
|
|
|
|
|
|
|
|
|
bool ReadProperty(Property prop, XmlNode token);
|
|
|
|
|
void WriteProperty(Property prop, XmlDocument doc, XmlNode node);
|
2019-02-04 19:30:33 +00:00
|
|
|
|
}
|
|
|
|
|
}
|