mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-04 03:00:20 +00:00
17 lines
413 B
C#
17 lines
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();
|
|||
|
}
|
|||
|
}
|
|||
|
}
|