com.sky.ondeviceagent / Runtime /AgentCore /Memory /FilePersistentPathProvider.cs
Sky-Kim's picture
Initial commit
2e7837a
Raw
History Blame Contribute Delete
306 Bytes
namespace OnDeviceAgent.AgentCore
{
public sealed class FilePersistentPathProvider : IPersistentPathProvider
{
readonly string m_Path;
public FilePersistentPathProvider(string path) { m_Path = path ?? string.Empty; }
public string GetPersistentDataPath() => m_Path;
}
}