You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi/Models/AppInfo.cs

16 lines
312 B

namespace DownKyi.Models
{
public class AppInfo
{
public string Name { get; } = "哔哩下载姬";
public int VersionCode { get; } = 507;
#if DEBUG
public string VersionName { get; } = "1.5.0 Debug";
#else
public string VersionName { get; } = "1.5.0";
#endif
}
}