8 lines
185 B
C#
8 lines
185 B
C#
namespace RobloxLegacy.AppData;
|
|
|
|
public interface IAppData
|
|
{
|
|
string ExecutableName { get; }
|
|
string PackageName { get; }
|
|
Dictionary<string, string> PackageFiles { get; }
|
|
} |