aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Stubs Collection/stubs/SW_Reset.cs
blob: e7b3b7499269888a5283aceb5e32484408d779d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Tango.PPC.Browser.Navigation
{
    public class BrowserNavigationRequest
    {
        public String Address { get; set; }
        public bool DisplayAddressBar { get; set; }

        public BrowserNavigationRequest()
        {
            DisplayAddressBar = true;
        }
    }
}