changeset 55 | 1ec0ef228158 |
child 69 | a4c44555f205 |
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/FingersDance.Data/Cutting.cs Tue Sep 15 13:30:58 2009 +0200 @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace FingersDance.Data +{ + class Cutting + { + private List<Annotation> annotList; + private string title; + + public Cutting(string titlePar, List<Annotation> annotListPar) + { + this.title = titlePar; + this.annotList = annotListPar; + + } + } +}