Mixonomer.NET/Mixonomer.Fire/Model/UserContext.cs

10 lines
235 B
C#
Raw Normal View History

2023-10-12 19:51:29 +01:00
using System.Collections.Generic;
namespace Mixonomer.Fire.Model;
public class UserContext
2023-10-12 19:51:29 +01:00
{
public User User { get; set; }
public IEnumerable<Playlist> Playlists { get; set; }
public IEnumerable<Tag> Tags { get; set; }
2023-10-12 19:51:29 +01:00
}