From c6de508efadb84c9e280f6960082d46553fc3413 Mon Sep 17 00:00:00 2001 From: Philipp Zabel Date: Wed, 11 Nov 2009 10:58:22 +0100 Subject: [PATCH] Movie: add secondary text to be shown in the movie list view This is plugin specific secondary info that movies don't have to be sorted by. --- src/movie.vala | 1 + 1 file changed, 1 insertion(+) diff --git a/src/movie.vala b/src/movie.vala index 8f0c88c..19f0629 100644 --- a/src/movie.vala +++ b/src/movie.vala @@ -23,6 +23,7 @@ public class Poster : Object { public class Movie : Object { public string title { get; set; } + public string secondary { get; set; } public int year { get; set; } public int rating { get; set; } public Genres genres; -- 1.7.9.5