11 lines
No EOL
248 B
C#
11 lines
No EOL
248 B
C#
// Inspired by Nyanotrasen
|
|
|
|
namespace Content.Server.HyperLink;
|
|
|
|
[RegisterComponent]
|
|
public sealed partial class HyperLinkComponent : Component
|
|
{
|
|
[DataField("url")]
|
|
[ViewVariables(VVAccess.ReadWrite)]
|
|
public string URL = string.Empty;
|
|
} |