using System.Collections.Generic; namespace Sony.Filtr.AdminAPI.ViewModels.PlaylistCuration { public class PlaylistMatchScore { public PlaylistMatchScore() { Criteria = new List(); } public int Score { get; set; } public List Criteria { get; set; } } }