ln.skyspot/hotspot/HotspotNetwork.cs

33 lines
760 B
C#

// /**
// * File: HotspotNetwork.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;
using ln.types.odb.attributes;
using ln.types.net;
namespace skyspot.session
{
public class HotspotNetwork
{
[DocumentID]
public readonly Guid ID = Guid.NewGuid();
public string Name { get; set; }
public string Description { get; set; }
public string SID { get; set; }
public Network4 ClientsNetwork { get; set; }
public byte[] RadiusSecret { get; set; }
public HotspotNetwork()
{
}
}
}