mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-03 19:27:28 +00:00
17 lines
No EOL
413 B
C#
17 lines
No EOL
413 B
C#
using System;
|
|
|
|
namespace MonoStockPortfolio.Core.Config
|
|
{
|
|
public class AndroidSqliteConfigRepository : IConfigRepository
|
|
{
|
|
public ConfigManager.Config LoadOrCreateConfig()
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SaveConfig(ConfigManager.Config config)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
} |