Files
libremetaverse/LibreMetaverse.RLV/EventArguments/RestrictionUpdatedEventArgs.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

19 lines
481 B
C#

using System;
namespace LibreMetaverse.RLV.EventArguments
{
public class RestrictionUpdatedEventArgs : EventArgs
{
public bool IsNew { get; }
public bool IsDeleted { get; }
public RlvRestriction Restriction { get; }
public RestrictionUpdatedEventArgs(RlvRestriction restriction, bool isNew, bool isDeleted)
{
IsNew = isNew;
IsDeleted = isDeleted;
Restriction = restriction;
}
}
}