ln.application/slots/SlotRequest.cs

23 lines
461 B
C#

// /**
// * File: SlotRequest.cs
// * Author: haraldwolff
// *
// * This file and it's content is copyrighted by the Author and / or copyright holder.
// * Any use wihtout proper permission is illegal and may lead to legal actions.
// *
// *
// **/
using System;
namespace ln.application.slots
{
public class SlotRequest
{
public long datasize;
public long chunksize;
public SlotRequest()
{
}
}
}