diff -r 42cf4dbc473b -r dd8ed4d3beb6 src/FingersDance.Data/Session.cs --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Session.cs Wed Oct 14 13:44:25 2009 +0200 @@ -0,0 +1,46 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FingersDance.Data +{ + [Serializable] + public class Session + { + private String _videoname = ""; + private String _videopath = ""; + private Dictionary _projects = new Dictionary(); + + #region Constructor + public Session(String Videoname, String Videopath) + { + _videopath = Videopath; + _videoname = Videoname; + } + public Session() + {} + + #endregion + + #region Properties + public String VideoName + { + get { return _videoname; } + set { _videoname = value; } + } + public String Videopath + { + get { return _videopath; } + set { _videopath = value; } + } + + public Dictionary Projects + { + get { return _projects; } + set { _projects = value; } + } + + #endregion + } +}