Toolkit.UI.Controls.Avalonia

This commit is contained in:
TheXamlGuy
2024-04-13 11:41:33 +01:00
parent 62a7e94e19
commit 862e7b2e34
97 changed files with 8558 additions and 0 deletions
@@ -0,0 +1,28 @@
namespace Gma.QrCodeNet.Encoding;
/// <summary>
/// This class contain two variables.
/// BitMatrix for QrCode
/// isContainMatrix for indicate whether QrCode contains BitMatrix or not.
/// BitMatrix will be equal to null if isContainMatrix is false.
/// </summary>
public class QrCode
{
internal QrCode(BitMatrix matrix)
{
Matrix = matrix;
IsContainMatrix = true;
}
public bool IsContainMatrix
{
get;
private set;
}
public BitMatrix Matrix
{
get;
private set;
}
}