mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-07-19 20:04:37 +02: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;
|
|
}
|
|
}
|
|
}
|