export default class UserDto { _id; login; constructor(model) { this._id = model._id; this.login = model.login; } }