Files
libremetaverse/LibreMetaverse.RLV/RlvMessage.cs
nooperation d905210ecf Initial commit of LibreMetaverse.RLV and LibreMetaverse.RLV.Tests.
This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
2025-08-17 19:55:33 -04:00

28 lines
699 B
C#

using System;
namespace LibreMetaverse.RLV
{
internal sealed class RlvMessage
{
public string Behavior { get; }
public Guid Sender { get; }
public string SenderName { get; }
public string Option { get; }
public string Param { get; }
public RlvMessage(string behavior, Guid sender, string senderName, string option, string param)
{
Behavior = behavior;
Sender = sender;
SenderName = senderName;
Option = option;
Param = param;
}
public override string ToString()
{
return $"{Behavior} from {SenderName} ({Sender})";
}
}
}