Switch-Toolbox/Switch_Toolbox_Library/Interfaces/Forms/IUpdateForm.cs

16 lines
317 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Toolbox.Library
{
/// <summary>
/// Represets a simple interface for updating a form.
/// </summary>
public interface IUpdateForm
{
void UpdateForm();
}
}