blob: fefc826a50c295cfea5c9ec640858e78ff5642ff [file] [log] [blame]
using System.Collections.Generic;
namespace Casbin.Model;
public interface IPolicyValues : IReadOnlyList<string>
{
public new string this[int index] { get; }
public string ToText();
public bool Equals(IPolicyValues other);
}