Files
TheXamlGuy bc55c4649b tidy
2024-04-26 23:05:36 +01:00

15 lines
358 B
C#

namespace Gma.QrCodeNet.Encoding.ReedSolomon;
internal struct PolyDivideStruct
{
internal PolyDivideStruct(Polynomial quotient, Polynomial remainder)
: this()
{
Quotient = quotient;
Remainder = remainder;
}
internal Polynomial Quotient { get; private set; }
internal Polynomial Remainder { get; private set; }
}