34 lines
563 B
C#
34 lines
563 B
C#
using BlubbFish.Utils;
|
|
using svnsync.Libraries;
|
|
|
|
namespace svnsync.Models
|
|
{
|
|
class ModelsTray : OwnModel<ModelsTray>
|
|
{
|
|
private ModelsTray()
|
|
{
|
|
this.Init();
|
|
}
|
|
|
|
protected override void Init()
|
|
{
|
|
this.Args = CmdArgs.Instance;
|
|
this.Svn = Svn.Instance;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Saves the Argument of the Program
|
|
/// </summary>
|
|
public CmdArgs Args { get; private set; }
|
|
|
|
/// <summary>
|
|
/// Save a SVN
|
|
/// </summary>
|
|
public Svn Svn { get; private set; }
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|