// Copyright © 2014 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
using System;
namespace CefSharp
{
///
/// Event arguments to the TitleChanged event handler.
///
public class TitleChangedEventArgs : EventArgs
{
///
/// The new title
///
public string Title { get; private set; }
///
/// Creates a new TitleChanged event arg
///
/// the new title
public TitleChangedEventArgs(string title)
{
Title = title;
}
}
}