1
0
Fork 0
mirror of https://github.com/wagesj45/butterflow-ui.git synced 2025-09-09 03:00:39 -05:00

Saving Configurations to Files

This commit is contained in:
Jordan Wages 2018-07-05 02:00:37 -05:00
commit 50eb034ac9
9 changed files with 133 additions and 19 deletions

View file

@ -7,6 +7,7 @@ using System.Threading.Tasks;
namespace butterflow_ui
{
/// <summary> A butterflow video subregion. Represents a snippet of a video on which butterflow will act. </summary>
[Serializable]
public class ButterflowSubregion : PropertyChangedAlerter
{
#region Members
@ -111,6 +112,11 @@ namespace butterflow_ui
{
return this.identifier;
}
private set
{
this.identifier = value;
OnPropertyChanged();
}
}
#endregion