using System; using System.Linq; namespace Sony.Filtr.Contracts.Entities.Genre { [Serializable] public class GenreMatch { public const string Version = "1"; public GenreMatch(string genre, int score) { Genre = genre; Score = score; } public int ID { get; set; } public string Genre { get; set; } public int Score { get; set; } } }