TRX/tools/config/TRX_ConfigToolLib/Models/AboutWindowViewModel.cs

12 lines
269 B
C#
Raw Permalink Normal View History

2024-10-02 10:23:19 +02:00
using TRX_ConfigToolLib.Utils;
namespace TRX_ConfigToolLib.Models;
public class AboutWindowViewModel : BaseLanguageViewModel
{
public static string ImageSource
{
get => AssemblyUtils.GetEmbeddedResourcePath(TRXConstants.Instance.AppImage);
}
}