diff -r 44a2dc869e28 -r f292db96b050 client/src/Iri.Modernisation.Data/Models/VideoChapter.cs --- a/client/src/Iri.Modernisation.Data/Models/VideoChapter.cs Tue Dec 22 16:22:22 2009 +0100 +++ b/client/src/Iri.Modernisation.Data/Models/VideoChapter.cs Mon Jan 04 10:29:39 2010 +0100 @@ -54,19 +54,23 @@ /// public List VideoSequences { get; set; } + public Color Color { get; set; } + public int IdChap { get; set; } + /// /// Constructeur /// /// Nom du chaptire - public VideoChapter(VideoBook fromBook,String name,VideoChapterType type) + public VideoChapter(VideoBook fromBook, int idChap, String name, Color color) { Book = fromBook; - Type = type; + Color = color; + IdChap = idChap; Title = name; Index = new List(); Annotations = new List(); VideoSequences = new List(); - + }