BililiveRecorder/BililiveRecorder.WPF/Models/AboutModel.cs
2022-05-17 00:53:37 +08:00

15 lines
482 B
C#

using System.ComponentModel;
#nullable enable
namespace BililiveRecorder.WPF.Models
{
public class AboutModel : INotifyPropertyChanged
{
#pragma warning disable CS0067 // The event 'Recorder.PropertyChanged' is never used
public event PropertyChangedEventHandler? PropertyChanged;
#pragma warning restore CS0067 // The event 'Recorder.PropertyChanged' is never used
public string InformationalVersion => GitVersionInformation.InformationalVersion;
}
}