mirror of
https://github.com/leiurayer/downkyi.git
synced 2025-03-22 15:20:12 +08:00
16 lines
326 B
C#
16 lines
326 B
C#
namespace DownKyi.Models
|
|
{
|
|
public class AppInfo
|
|
{
|
|
public string Name { get; } = "哔哩下载姬";
|
|
public int VersionCode { get; } = 505;
|
|
|
|
#if DEBUG
|
|
public string VersionName { get; } = "1.5.0-alpha6 Debug";
|
|
#else
|
|
public string VersionName { get; } = "1.5.0-alpha6";
|
|
#endif
|
|
|
|
}
|
|
}
|