using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.Xml.Serialization; namespace SharpMapServer.Model { public class SharpMapContext { public List Users { get; set; } public List Layers { get; set; } public WmsCapabilities Capabilities { get; set; } } }