BililiveRecorder/BililiveRecorder.WPF/Models/AboutModel.cs

18 lines
428 B
C#
Raw Normal View History

2021-05-01 00:22:27 +08:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2021-05-01 17:57:43 +08:00
#nullable enable
2021-05-01 00:22:27 +08:00
namespace BililiveRecorder.WPF.Models
{
public class AboutModel : INotifyPropertyChanged
{
2021-05-01 17:57:43 +08:00
public event PropertyChangedEventHandler? PropertyChanged;
2021-05-01 00:22:27 +08:00
public string InformationalVersion => GitVersionInformation.InformationalVersion;
}
}