mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
15 lines
482 B
C#
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;
|
|
}
|
|
}
|