mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 11:13:19 +00:00
11 lines
No EOL
296 B
C#
11 lines
No EOL
296 B
C#
using System.Collections.Generic;
|
|
using MonoStockPortfolio.Entities;
|
|
|
|
namespace MonoStockPortfolio.Activites.ConfigScreen
|
|
{
|
|
public interface IConfigPresenter
|
|
{
|
|
void Initialize(IConfigView configView);
|
|
void SaveConfig(List<StockDataItem> checkedItems);
|
|
}
|
|
} |