blob: 1dea82c4f9ee97e3cdeec07f93e91b16f22172b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.PPC.Common;
using Tango.SharedUI;
namespace Tango.PPC.Storage.ViewContracts
{
public interface IMainView : IPPCView
{
void NavigateBack();
void EditFileName();
}
}
|