14 lines
319 B
C#
14 lines
319 B
C#
// <copyright file="Language.cs" company="PlaceholderCompany">
|
|
// Copyright (c) PlaceholderCompany. All rights reserved.
|
|
// </copyright>
|
|
|
|
namespace FSI.BT.Tools.SystemTrayMenu.UserInterface
|
|
{
|
|
public class Language
|
|
{
|
|
public string Name { get; set; }
|
|
|
|
public string Value { get; set; }
|
|
}
|
|
}
|