Mark Datum.type and Datum.content as protected instead of internal

This commit is contained in:
Camden Dixie O'Brien 2025-02-28 12:55:11 +00:00
parent cdbef62e70
commit c683f72e10

View File

@ -71,8 +71,8 @@ namespace StudySystemClient.Der {
}
public abstract class Datum {
internal uint8 type;
internal uint8[] content;
protected uint8 type;
protected uint8[] content;
public uint8[] encode() {
var buffer = new ByteArray();