1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-07-22 06:49:40 +02:00
portainer/app/models/api/teamMembership.js

6 lines
143 B
JavaScript

function TeamMembershipModel(data) {
this.Id = data.Id;
this.UserId = data.UserID;
this.TeamId = data.TeamID;
this.Role = data.Role;
}