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