forked from xiaoyaocz/biliuwp-lite
-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #427 from ywmoyue/dev
4.6.23
- Loading branch information
Showing
38 changed files
with
1,574 additions
and
404 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using BiliLite.Services; | ||
using BiliLite.Services.Interfaces; | ||
using Microsoft.Extensions.DependencyInjection; | ||
|
||
namespace BiliLite.Extensions | ||
{ | ||
public static class QrCodeExtensions | ||
{ | ||
public static IServiceCollection AddQrCodeService(this IServiceCollection services) | ||
{ | ||
#if ARM64 | ||
services.AddTransient<IQrCodeService, QrCoderQrCodeService>(); | ||
#else | ||
services.AddTransient<IQrCodeService, ZXingQrCodeService>(); | ||
#endif | ||
return services; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
using Windows.UI.Xaml; | ||
|
||
namespace BiliLite.Models.Common.Live | ||
{ | ||
public class InteractWordModel | ||
{ | ||
public string UserName { get; set; } | ||
|
||
public string UserID { get; set; } | ||
|
||
public int MsgType { get; set; } | ||
|
||
public string MedalName { get; set; } | ||
|
||
public string MedalLevel { get; set; } | ||
|
||
public string MedalColor { get; set; } | ||
|
||
public Visibility ShowMedal { get; set; } = Visibility.Collapsed; | ||
} | ||
} |
Oops, something went wrong.