You've already forked TranslationApp
mirror of
https://github.com/lifebottle/TranslationApp.git
synced 2026-02-13 15:25:58 -08:00
8 lines
168 B
C#
8 lines
168 B
C#
namespace TranslationLib
|
|
{
|
|
public class TranslationEntry
|
|
{
|
|
public string EnglishTranslation { get; set; }
|
|
public int Count { get; set; }
|
|
}
|
|
} |