mirror of
https://github.com/ProjectSWGCore/ScriptEditor.git
synced 2026-07-13 21:01:03 -04:00
16 lines
241 B
C#
16 lines
241 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
|
|
namespace ProjectSWGScriptEditor.FileReaders.STF
|
|
{
|
|
public class StfEntry
|
|
{
|
|
public string key;
|
|
public string value;
|
|
|
|
public StfEntry() { }
|
|
}
|
|
}
|