BililiveRecorder/BililiveRecorder.WPF/Models/AboutModel.cs

15 lines
482 B
C#
Raw Normal View History

2021-05-01 00:22:27 +08:00
using System.ComponentModel;
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
{
2022-05-17 00:53:37 +08:00
#pragma warning disable CS0067 // The event 'Recorder.PropertyChanged' is never used
2021-05-01 17:57:43 +08:00
public event PropertyChangedEventHandler? PropertyChanged;
2022-05-17 00:53:37 +08:00
#pragma warning restore CS0067 // The event 'Recorder.PropertyChanged' is never used
2021-05-01 00:22:27 +08:00
public string InformationalVersion => GitVersionInformation.InformationalVersion;
}
}