File size: 247 Bytes
3206347 |
1 2 3 4 5 6 7 8 9 10 11 |
const appAuthClientSerializer = (appAuthClient) => {
return {
id: appAuthClient.id,
appConfigId: appAuthClient.appConfigId,
name: appAuthClient.name,
active: appAuthClient.active,
};
};
export default appAuthClientSerializer;
|