mirror of
https://github.com/jayfunc/BetterLyrics.git
synced 2026-01-13 03:34:55 +08:00
13 lines
283 B
C#
13 lines
283 B
C#
// 2025/6/23 by Zhe Fang
|
|
|
|
using CommunityToolkit.WinUI.Helpers;
|
|
using Windows.ApplicationModel;
|
|
|
|
namespace BetterLyrics.WinUI3.Helper
|
|
{
|
|
public static class MetadataHelper
|
|
{
|
|
public static string AppVersion => Package.Current.Id.Version.ToFormattedString();
|
|
}
|
|
}
|