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