2019-08-01 02:27:46 +02:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
|
|
namespace Toolbox.Library
|
|
|
|
|
{
|
2019-08-06 23:35:18 +02:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Represets a simple interface for updating a form.
|
|
|
|
|
/// </summary>
|
2019-08-01 02:27:46 +02:00
|
|
|
|
public interface IUpdateForm
|
|
|
|
|
{
|
|
|
|
|
void UpdateForm();
|
|
|
|
|
}
|
|
|
|
|
}
|