Skip to content

Commit

Permalink
Change class visibility for reader
Browse files Browse the repository at this point in the history
  • Loading branch information
gus33000 committed Sep 22, 2024
1 parent f3eb035 commit f19d28e
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Img2Ffu.Library/Reader/Data/ImageFlash.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

namespace Img2Ffu.Reader.Data
{
internal class ImageFlash
public class ImageFlash
{
public ImageHeader ImageHeader;
public string ManifestData = "";
Expand Down
2 changes: 1 addition & 1 deletion Img2Ffu.Library/Reader/Data/SignedImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

namespace Img2Ffu.Reader.Data
{
internal class SignedImage
public class SignedImage
{
public SecurityHeader SecurityHeader;
public byte[] Catalog;
Expand Down
2 changes: 1 addition & 1 deletion Img2Ffu.Library/Reader/Data/Store.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

namespace Img2Ffu.Reader.Data
{
internal class Store
public class Store
{
public StoreHeader StoreHeader;
public uint CompressionAlgorithm;
Expand Down
2 changes: 1 addition & 1 deletion Img2Ffu.Library/Reader/Data/ValidationDescriptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@

namespace Img2Ffu.Reader.Data
{
internal class ValidationDescriptor
public class ValidationDescriptor
{
public ValidationEntry ValidationEntry;
public byte[] ValidationBytes;
Expand Down
2 changes: 1 addition & 1 deletion Img2Ffu.Library/Reader/Data/WriteDescriptor.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@

namespace Img2Ffu.Reader.Data
{
internal class WriteDescriptor
public class WriteDescriptor
{
public BlockDataEntry BlockDataEntry;
public uint DataSize;
Expand Down
2 changes: 1 addition & 1 deletion Img2Ffu.Library/Reader/Enums/FFUVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
namespace Img2Ffu.Reader.Enums
{
internal enum FFUVersion
public enum FFUVersion
{
V1,
V1_COMPRESSED,
Expand Down

0 comments on commit f19d28e

Please sign in to comment.