This repository has been archived on 2025-06-05. You can view files and clone it, but cannot push or open issues or pull requests.

7 lines
143 B
C#

namespace RobloxLegacy.AppData;
public interface IAppData
{
string Name { get; }
Dictionary<string, string> PackageFiles { get; }
}