author | cavaliet |
Tue, 15 Sep 2009 13:30:58 +0200 | |
changeset 55 | 1ec0ef228158 |
child 69 | a4c44555f205 |
permissions | -rw-r--r-- |
55 | 1 |
using System; |
2 |
using System.Collections.Generic; |
|
3 |
using System.Linq; |
|
4 |
using System.Text; |
|
5 |
||
6 |
namespace FingersDance.Data |
|
7 |
{ |
|
8 |
class Cutting |
|
9 |
{ |
|
10 |
private List<Annotation> annotList; |
|
11 |
private string title; |
|
12 |
||
13 |
public Cutting(string titlePar, List<Annotation> annotListPar) |
|
14 |
{ |
|
15 |
this.title = titlePar; |
|
16 |
this.annotList = annotListPar; |
|
17 |
|
|
18 |
} |
|
19 |
} |
|
20 |
} |