mirror of
https://github.com/bloxstraplabs/bloxstrap.git
synced 2025-04-22 18:41:26 -07:00
18 lines
334 B
C#
18 lines
334 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Bloxstrap.Models.SettingTasks
|
|
{
|
|
public interface ISettingTask
|
|
{
|
|
public bool OriginalState { get; set; }
|
|
|
|
public bool NewState { get; set; }
|
|
|
|
public void Execute();
|
|
}
|
|
}
|