mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-10 11:38:25 +01:00
13 lines
295 B
C#
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;
|
||
|
}
|
||
|
}
|