src/FingersDance.Data/Cutting.cs
changeset 55 1ec0ef228158
child 69 a4c44555f205
equal deleted inserted replaced
53:09d0bc6970b5 55:1ec0ef228158
       
     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 }