1
0
mirror of synced 2024-12-01 02:27:22 +01:00
Switch-Toolbox/Switch_Toolbox_Library/Interfaces/Forms/IUpdateForm.cs

17 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();
}
}