47 lines
1.2 KiB
C#
47 lines
1.2 KiB
C#
using System;
|
|
using BlubbFish.Utils;
|
|
using svnsync.Helpers;
|
|
using System.Collections.Generic;
|
|
|
|
namespace svnsync.Models
|
|
{
|
|
public class ModelsWindow : OwnModel<ModelsWindow> {
|
|
//private InIReader networkfile;
|
|
private ModelsWindow() {
|
|
this.Init();
|
|
}
|
|
|
|
protected override void Init() {
|
|
this.Args = CmdArgs.Instance;
|
|
}
|
|
|
|
private String MessageValue = "";
|
|
public String Message {
|
|
get { return this.MessageValue; }
|
|
set { this.MessageValue = value; this.Update(); }
|
|
}
|
|
|
|
private Handles.FormType FormTypeValue;
|
|
public Handles.FormType FormType {
|
|
get { return this.FormTypeValue; }
|
|
set { this.FormTypeValue = value; this.Update(); }
|
|
}
|
|
|
|
private List<String> DeletedFilesValue;
|
|
public List<string> DeletedFiles {
|
|
get { return this.DeletedFilesValue; }
|
|
set { this.DeletedFilesValue = value; this.Update(); }
|
|
}
|
|
|
|
private List<String> NewFilesValue;
|
|
public List<string> NewFiles {
|
|
get { return this.NewFilesValue; }
|
|
set { this.NewFilesValue = value; this.Update(); }
|
|
}
|
|
|
|
|
|
public CmdArgs Args { get; private set; }
|
|
|
|
}
|
|
}
|