mirror of
https://github.com/chylex/TweetDuck.git
synced 2024-11-23 17:42:46 +01:00
12 lines
198 B
C#
12 lines
198 B
C#
using System;
|
|
|
|
namespace TweetLib.Browser.Events {
|
|
public sealed class PageLoadEventArgs : EventArgs {
|
|
public string Url { get; }
|
|
|
|
public PageLoadEventArgs(string url) {
|
|
Url = url;
|
|
}
|
|
}
|
|
}
|