1
0
Fork 0
mirror of https://codeberg.org/ashley/poke.git synced 2024-11-17 10:14:39 -05:00
poke/core/LightTube/Contexts/LocalsContext.cs
2022-08-05 22:33:38 +03:00

13 lines
295 B
C#

using System.Collections.Generic;
using InnerTube.Models;
namespace LightTube.Contexts
{
public class LocalsContext : BaseContext
{
public Dictionary<string, string> Languages;
public Dictionary<string, string> Regions;
public string CurrentLanguage;
public string CurrentRegion;
}
}