--- a/client/src/Iri.Modernisation.Data/Models/SettingsProject.cs Thu Feb 04 16:38:04 2010 +0100
+++ b/client/src/Iri.Modernisation.Data/Models/SettingsProject.cs Tue Feb 09 15:30:46 2010 +0100
@@ -19,15 +19,16 @@
/// </summary>
public static class SettingsProject
{
-
-
-
+
+
+ static public User ActualUser { get; set; }
static public List<VideoBook> ListVideoBook { get; set; }
static public List<VideoSequence> ProductionVideo { get; set; }
static public Sync Synchronizer { get; set; }
static SettingsProject()
{
+ ActualUser = new User() { UserName = "TestUser" };
Synchronizer = new Sync();
Synchronizer.Completed += new EventHandler<EventArgs>(Synchronizer_Completed);
}