author | sarias |
Tue, 15 Sep 2009 18:20:09 +0200 | |
changeset 61 | 9e2f007b19b3 |
parent 55 | 1ec0ef228158 |
child 69 | a4c44555f205 |
permissions | -rw-r--r-- |
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; } } }