This library provides RLV command processing and ease of use for checking current RLV permissions and restrictions
19 lines
481 B
C#
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;
|
|
}
|
|
}
|
|
}
|