using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace WEBSWAPP.Website.Data
{
public class NavigationalLink
{
public string Id {get;set;}
public LinkTypes LinkType
{
get;
set;
}
public string ToolTip { get; set; }
public string Text { get; set; }
public string ButtonStyle { get; set; }
public string HoverButtonStyle { get; set; }
public TechnologyTypes Technology { get; set; }
public string ParentNavigationalLinkId { get; set; }
public int Position { get; set; }
public string Url { get; set; }
public bool SuppressSourceCode { get; set; }
}
}