Co-authored-by: FL-OZ <anotherscuffed@gmail.com> Co-authored-by: Pieter-Jan Briers <pieterjan.briers+git@gmail.com>
12 lines
207 B
C#
12 lines
207 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Content.Server.Interfaces
|
|
{
|
|
public interface IAccess
|
|
{
|
|
public List<string> GetTags();
|
|
|
|
public void SetTags(List<string> newTags);
|
|
}
|
|
}
|