96d6b03cc5
started working on localization
13 lines
277 B
C#
13 lines
277 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SharedLibraryCore.Localization
|
|
{
|
|
public class Layout
|
|
{
|
|
public string LocalizationName { get; set; }
|
|
public Dictionary<string, string> LocalizationSet { get; set; }
|
|
}
|
|
}
|