14 lines
266 B
C#
14 lines
266 B
C#
using Robust.Shared.Serialization;
|
|
|
|
namespace Content.Shared._NF.Books.Systems;
|
|
|
|
[Serializable, NetSerializable]
|
|
public sealed class OpenURLEvent : EntityEventArgs
|
|
{
|
|
public string URL { get; }
|
|
public OpenURLEvent(string url)
|
|
{
|
|
URL = url;
|
|
}
|
|
}
|