diff --git a/src/Tgstation.Server.Api/Models/User.cs b/src/Tgstation.Server.Api/Models/User.cs
index 82699749a9..6f96a1a5e6 100644
--- a/src/Tgstation.Server.Api/Models/User.cs
+++ b/src/Tgstation.Server.Api/Models/User.cs
@@ -29,10 +29,10 @@ namespace Tgstation.Server.Api.Models
public InstanceManagerRights InstanceManagerRights { get; set; }
///
- /// of s the can view
+ /// of s the can view mapped to a bool representing if they can set permissions for s within that
///
#pragma warning disable CA2227 // Collection properties should be read only
- public List ViewableInstanceIds { get; set; }
+ public Dictionary ViewableInstanceIds { get; set; }
#pragma warning restore CA2227 // Collection properties should be read only
}
}
\ No newline at end of file