10 lines
192 B
C#
10 lines
192 B
C#
namespace Shared.Models.Online.AniLibria
|
|
{
|
|
public struct Player
|
|
{
|
|
public string host { get; set; }
|
|
|
|
public Dictionary<string, Series> playlist { get; set; }
|
|
}
|
|
}
|