readme updates

started working on localization
This commit is contained in:
RaidMax
2018-04-22 15:04:18 -05:00
parent c60a1f3d33
commit 96d6b03cc5
20 changed files with 303 additions and 393 deletions

View File

@ -0,0 +1,12 @@
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; }
}
}