ln.skyspot/users/TrafficProfile.cs

22 lines
438 B
C#
Raw Permalink Normal View History

2019-04-23 09:24:56 +02:00
using System;
using ln.types.odb.attributes;
namespace skyspot.users
{
public class TrafficProfile
{
[DocumentIDAttribute]
public String Name { get; set; }
public long Speed { get; set; }
public long TrafficVolume { get; set; }
public TimeSpan Interval { get; set; }
public TrafficProfile NextProfile { get; set; }
public TrafficProfile()
{
}
}
}