package com.github.mjdev.libaums.partition;

/* JADX INFO: loaded from: classes.dex */
public class PartitionTableEntry {
    int logicalBlockAddress;
    byte partitionType;
    int totalNumberOfSectors;

    public PartitionTableEntry(byte b, int i, int i2) {
        this.partitionType = b;
        this.logicalBlockAddress = i;
        this.totalNumberOfSectors = i2;
    }

    public byte getPartitionType() {
        return this.partitionType;
    }

    public int getLogicalBlockAddress() {
        return this.logicalBlockAddress;
    }

    public int getTotalNumberOfSectors() {
        return this.totalNumberOfSectors;
    }
}
