ln.objects/storage/BinaryObject.cs

25 lines
539 B
C#

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;
}
}
}