ln.skyspot/session/HotspotVolume.cs

21 lines
442 B
C#
Raw Normal View History

2019-04-23 09:24:56 +02:00
using System;
namespace skyspot.session
{
public enum TrafficVolumeState { CREATED, ACTIVE, FULLFILLED, CANCELED }
public class HotspotVolume
{
public DateTimeOffset Created;
public DateTimeOffset FirstUse;
public long TrafficVolume;
public long UsedVolume;
public long RemainingTrafficVolume => TrafficVolume - UsedVolume;
public HotspotVolume()
{
}
}
}