TRX/tools/config/TRX_ConfigToolLib/Models/AboutWindowViewModel.cs
2024-10-03 10:36:35 +02:00

11 lines
269 B
C#

using TRX_ConfigToolLib.Utils;
namespace TRX_ConfigToolLib.Models;
public class AboutWindowViewModel : BaseLanguageViewModel
{
public static string ImageSource
{
get => AssemblyUtils.GetEmbeddedResourcePath(TRXConstants.Instance.AppImage);
}
}