using System; using System.Collections.Generic; using Newtonsoft.Json; namespace BTCPayServer.Client.Models { public class StoreData : StoreBaseData { /// /// the id of the store /// public string Id { get; set; } } public class StoreUserData : ApplicationUserData { /// /// the store role of the user /// public string StoreRole { get; set; } } public class RoleData { public string Id { get; set; } public List Permissions { get; set; } public string Role { get; set; } public bool IsServerRole { get; set; } } }