mirror of
https://github.com/mgroves/MonodroidStockPortfolio.git
synced 2025-01-01 03:00:17 +00:00
11 lines
No EOL
341 B
C#
11 lines
No EOL
341 B
C#
using System.Collections.Generic;
|
|
using MonoStockPortfolio.Entities;
|
|
|
|
namespace MonoStockPortfolio.Activites.ConfigScreen
|
|
{
|
|
public interface IConfigView
|
|
{
|
|
void PrepopulateConfiguration(IList<StockDataItem> allitems, IEnumerable<StockDataItem> checkeditems);
|
|
void ShowToastMessage(string message);
|
|
}
|
|
} |