using System.Collections.Generic; namespace Mixonomer.Fire.Model { public class UserContext { public User User { get; set; } public IEnumerable Playlists { get; set; } public IEnumerable Tags { get; set; } } }