mirror of
https://github.com/SteamAutoCracks/Steam-auto-crack.git
synced 2025-05-11 02:15:38 +02:00
21 lines
No EOL
585 B
C#
21 lines
No EOL
585 B
C#
using System.ComponentModel;
|
|
using System.Reflection;
|
|
using System.Runtime.CompilerServices;
|
|
|
|
namespace SteamAutoCrack.ViewModels;
|
|
|
|
public class AboutViewModel : INotifyPropertyChanged
|
|
{
|
|
public string Ver => "SteamAutoCrack " + Assembly.GetExecutingAssembly().GetName().Version;
|
|
|
|
#region INPC
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
private void NotifyPropertyChanged([CallerMemberName] string propertyName = "")
|
|
{
|
|
if (PropertyChanged != null) PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
|
|
}
|
|
|
|
#endregion
|
|
} |