LoginAction(String Username, String Password, String type) (0 for normal user, 1 for publisher user)
(1).User Object
public class User
private String Id;
private String username;
private String password;
private int gender;
private string phone;
private string profile;
private int type;//do not show to user this field
public class User
private String Id;
private String username;
private String password;
private int gender;
private string phone;
private string profile;
private int type;//do not show to user this field
(2).Publisher Object
public class Publisher
private String id;
private String username;
private String password;
private string phone
private int type; // do not show to user this field
public class Publisher
private String id;
private String username;
private String password;
private string phone
private int type; // do not show to user this field
(3).Publish Information
public class PublishInformation
private string publishInfoId;
private string publisherId;
private string title;
private string profile;
public class PublishInformation
private string publishInfoId;
private string publisherId;
private string title;
private string profile;