@sync-in/server
Version:
The secure, open-source platform for file storage, sharing, collaboration, and sync
23 lines (22 loc) • 697 B
JavaScript
/*
* Copyright (C) 2012-2025 Johan Legrand <johan.legrand@sync-in.com>
* This file is part of Sync-in | The open source file sync and share solution
* See the LICENSE file for licensing details
*/ "use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "LoginResponseDto", {
enumerable: true,
get: function() {
return LoginResponseDto;
}
});
const _tokenresponsedto = require("./token-response.dto");
let LoginResponseDto = class LoginResponseDto {
constructor(user){
this.user = user;
this.token = new _tokenresponsedto.TokenResponseDto();
}
};
//# sourceMappingURL=login-response.dto.js.map