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