namespace BinaryObjectScanner.Models.N3DS
{
///
/// Used in FSReg:Register.
///
///
public sealed class StorageInfo
{
///
/// Extdata ID
///
public ulong ExtdataID;
///
/// System savedata IDs
///
public byte[] SystemSavedataIDs;
///
/// Storage accessible unique IDs
///
public byte[] StorageAccessibleUniqueIDs;
///
/// Filesystem access info
///
/// TODO: Create enum for the flag values
/// TODO: Combine with "other attributes"
public byte[] FileSystemAccessInfo;
///
/// Other attributes
///
public StorageInfoOtherAttributes OtherAttributes;
}
}