blob: 3b7e15830b72029c50f24d9e521f2ea292add3ed [file] [log] [blame]
// Copyright 2016 The Vanadium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package io.v.syncbase;
import java.util.Map;
public class AccessList {
public enum AccessLevel {
READ,
READ_WRITE,
READ_WRITE_ADMIN
}
public Map<String, AccessLevel> users;
}