Made SegmentedFile.MagicBytes static

pull/2/head
Harald Wolff 2019-10-15 12:19:56 +02:00
parent bec1e483c4
commit 8857b30487
1 changed files with 2 additions and 1 deletions

View File

@ -29,7 +29,8 @@ namespace ln.types.odb.ng.storage
**/
public class SegmentedFile
{
public byte[] MagicBytes { get; } = new byte[] { 0x0F, 0x0E, 0x0D, 0x0A };
public static byte[] MagicBytes { get; } = new byte[] { 0x0F, 0x0E, 0x0D, 0x0A };
public String FileName { get; }