diff -r 1a5da89daee9 -r c379899e9c94 src/FingersDance.Data/Session.cs --- a/src/FingersDance.Data/Session.cs Wed Oct 14 13:45:55 2009 +0200 +++ b/src/FingersDance.Data/Session.cs Wed Oct 14 14:02:31 2009 +0200 @@ -8,8 +8,12 @@ [Serializable] public class Session { + private String _name = ""; private String _videoname = ""; private String _videopath = ""; + private String _alias = ""; + private String _email = ""; + private String _description = ""; private Dictionary _projects = new Dictionary(); #region Constructor @@ -24,17 +28,36 @@ #endregion #region Properties - public String VideoName + public String Name { - get { return _videoname; } - set { _videoname = value; } + get { return _name; } + set { _name = value; } } + public String Videopath { get { return _videopath; } set { _videopath = value; } } + public String Alias + { + get { return _alias; } + set { _alias = value; } + } + + public String Email + { + get { return _email; } + set { _email = value; } + } + + public String Description + { + get { return _description; } + set { _description = value; } + } + public Dictionary Projects { get { return _projects; }