Package org.chare.service

Source Code of org.chare.service.UserPreferences

package org.chare.service;

import org.chare.entity.User;

public class UserPreferences {

  public User user;

  public UserPreferences() {
    this(new User());
  }

  public UserPreferences(User user) {
    this.user = user;
  }

}
TOP

Related Classes of org.chare.service.UserPreferences

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.