Advertisement
Guest User

Response

a guest
Apr 15th, 2017
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 5 0.56 KB | None | 0 0
  1. package com.alexandergartemov.translationmobilization.data;
  2.  
  3. import com.alexandergartemov.translationmobilization.data.dictionary.Def;
  4.  
  5. /**
  6.  * Created by Alexa on 15.04.2017.
  7.  */
  8.  
  9. public class ResponseDictionaryModel
  10. {
  11.     private Def[] def;
  12.  
  13.     private String head;
  14.  
  15.     public Def[] getDef ()
  16.     {
  17.         return def;
  18.     }
  19.  
  20.     public void setDef (Def[] def)
  21.     {
  22.         this.def = def;
  23.     }
  24.  
  25.     public String getHead ()
  26.     {
  27.         return head;
  28.     }
  29.  
  30.     public void setHead (String head)
  31.     {
  32.         this.head = head;
  33.     }
  34.  
  35. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement