using System.Collections.Generic; namespace Content.Server.Interfaces { public interface IAccess { public List GetTags(); public void SetTags(List newTags); } }