mirror of
https://github.com/LostArtefacts/TRX.git
synced 2025-04-29 05:08:00 +03:00
11 lines
269 B
C#
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);
|
|
}
|
|
}
|