| 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; | |
| } | |
| } | |