ln.objects/storage/BinaryObject.cs

25 lines
539 B
C#
Raw Normal View History

2020-11-18 00:24:25 +01:00
using System;
using System.Collections.Generic;
using System.Dynamic;
using System.Text;
namespace ln.objects.storage
{
public class BinaryObject
{
public Guid UID { get; set; }
public int Version { get; set; }
public long Offset { get; set; }
public int PhySize { get; set; }
public int LogSize { get; set; }
public BinaryObject() { }
public BinaryObject(long offset,int phySize)
{
Offset = offset;
PhySize = phySize;
}
}
}