1. using System;
  2.  
  3. namespace clempaul.Dreamhost.ResponseData
  4. {
  5.     public class DomainRegistration
  6.     {
  7.  
  8.         private string _account_id;
  9.         private string _domain;
  10.         private DateTime _expires;
  11.         private DateTime _created;
  12.         private DateTime _modified;
  13.         private string _autorenew;
  14.         private bool _locked;
  15.         private bool _expired;
  16.         private string _ns1;
  17.         private string _ns2;
  18.         private string _ns3;
  19.         private string _ns4;
  20.         private string _registrant;
  21.         private string _registrant_org;
  22.         private string _registrant_street1;
  23.         private string _registrant_street2;
  24.         private string _registrant_city;
  25.         private string _registrant_state;
  26.         private string _registrant_zip;
  27.         private string _registrant_country;
  28.         private string _registrant_phone;
  29.         private string _registrant_fax;
  30.         private string _registrant_email;
  31.         private string _tech;
  32.         private string _tech_org;
  33.         private string _tech_street1;
  34.         private string _tech_street2;
  35.         private string _tech_city;
  36.         private string _tech_state;
  37.         private string _tech_zip;
  38.         private string _tech_country;
  39.         private string _tech_phone;
  40.         private string _tech_fax;
  41.         private string _tech_email;
  42.         private string _billing;
  43.         private string _billing_org;
  44.         private string _billing_street1;
  45.         private string _billing_street2;
  46.         private string _billing_city;
  47.         private string _billing_state;
  48.         private string _billing_zip;
  49.         private string _billing_country;
  50.         private string _billing_phone;
  51.         private string _billing_fax;
  52.         private string _billing_email;
  53.         private string _admin;
  54.         private string _admin_org;
  55.         private string _admin_street1;
  56.         private string _admin_street2;
  57.         private string _admin_city;
  58.         private string _admin_state;
  59.         private string _admin_zip;
  60.         private string _admin_country;
  61.         private string _admin_phone;
  62.         private string _admin_fax;
  63.         private string _admin_email;
  64.  
  65.         public string admin_email
  66.         {
  67.             get { return _admin_email; }
  68.             set { _admin_email = value; }
  69.         }
  70.  
  71.         public string admin_fax
  72.         {
  73.             get { return _admin_fax; }
  74.             set { _admin_fax = value; }
  75.         }
  76.  
  77.         public string admin_phone
  78.         {
  79.             get { return _admin_phone; }
  80.             set { _admin_phone = value; }
  81.         }
  82.  
  83.         public string admin_country
  84.         {
  85.             get { return _admin_country; }
  86.             set { _admin_country = value; }
  87.         }
  88.  
  89.         public string admin_zip
  90.         {
  91.             get { return _admin_zip; }
  92.             set { _admin_zip = value; }
  93.         }
  94.  
  95.         public string admin_state
  96.         {
  97.             get { return _admin_state; }
  98.             set { _admin_state = value; }
  99.         }
  100.  
  101.         public string admin_city
  102.         {
  103.             get { return _admin_city; }
  104.             set { _admin_city = value; }
  105.         }
  106.  
  107.         public string admin_street2
  108.         {
  109.             get { return _admin_street2; }
  110.             set { _admin_street2 = value; }
  111.         }
  112.  
  113.         public string admin_street1
  114.         {
  115.             get { return _admin_street1; }
  116.             set { _admin_street1 = value; }
  117.         }
  118.  
  119.         public string admin_org
  120.         {
  121.             get { return _admin_org; }
  122.             set { _admin_org = value; }
  123.         }
  124.  
  125.         public string admin
  126.         {
  127.             get { return _admin; }
  128.             set { _admin = value; }
  129.         }
  130.  
  131.         public string billing_email
  132.         {
  133.             get { return _billing_email; }
  134.             set { _billing_email = value; }
  135.         }
  136.  
  137.         public string billing_fax
  138.         {
  139.             get { return _billing_fax; }
  140.             set { _billing_fax = value; }
  141.         }
  142.  
  143.         public string billing_phone
  144.         {
  145.             get { return _billing_phone; }
  146.             set { _billing_phone = value; }
  147.         }
  148.  
  149.         public string billing_country
  150.         {
  151.             get { return _billing_country; }
  152.             set { _billing_country = value; }
  153.         }
  154.  
  155.         public string billing_zip
  156.         {
  157.             get { return _billing_zip; }
  158.             set { _billing_zip = value; }
  159.         }
  160.  
  161.         public string billing_state
  162.         {
  163.             get { return _billing_state; }
  164.             set { _billing_state = value; }
  165.         }
  166.  
  167.         public string billing_city
  168.         {
  169.             get { return _billing_city; }
  170.             set { _billing_city = value; }
  171.         }
  172.  
  173.         public string billing_street2
  174.         {
  175.             get { return _billing_street2; }
  176.             set { _billing_street2 = value; }
  177.         }
  178.  
  179.         public string billing_street1
  180.         {
  181.             get { return _billing_street1; }
  182.             set { _billing_street1 = value; }
  183.         }
  184.  
  185.  
  186.         public string billing_org
  187.         {
  188.             get { return _billing_org; }
  189.             set { _billing_org = value; }
  190.         }
  191.  
  192.         public string billing
  193.         {
  194.             get { return _billing; }
  195.             set { _billing = value; }
  196.         }
  197.  
  198.         public string tech_email
  199.         {
  200.             get { return _tech_email; }
  201.             set { _tech_email = value; }
  202.         }
  203.  
  204.         public string tech_fax
  205.         {
  206.             get { return _tech_fax; }
  207.             set { _tech_fax = value; }
  208.         }
  209.  
  210.         public string tech_phone
  211.         {
  212.             get { return _tech_phone; }
  213.             set { _tech_phone = value; }
  214.         }
  215.  
  216.         public string tech_country
  217.         {
  218.             get { return _tech_country; }
  219.             set { _tech_country = value; }
  220.         }
  221.  
  222.         public string tech_zip
  223.         {
  224.             get { return _tech_zip; }
  225.             set { _tech_zip = value; }
  226.         }
  227.  
  228.         public string tech_state
  229.         {
  230.             get { return _tech_state; }
  231.             set { _tech_state = value; }
  232.         }
  233.  
  234.         public string tech_city
  235.         {
  236.             get { return _tech_city; }
  237.             set { _tech_city = value; }
  238.         }
  239.  
  240.         public string tech_street2
  241.         {
  242.             get { return _tech_street2; }
  243.             set { _tech_street2 = value; }
  244.         }
  245.  
  246.         public string tech_street1
  247.         {
  248.             get { return _tech_street1; }
  249.             set { _tech_street1 = value; }
  250.         }
  251.  
  252.         public string tech_org
  253.         {
  254.             get { return _tech_org; }
  255.             set { _tech_org = value; }
  256.         }
  257.  
  258.         public string tech
  259.         {
  260.             get { return _tech; }
  261.             set { _tech = value; }
  262.         }
  263.  
  264.         public string registrant_email
  265.         {
  266.             get { return _registrant_email; }
  267.             set { _registrant_email = value; }
  268.         }
  269.  
  270.         public string registrant_fax
  271.         {
  272.             get { return _registrant_fax; }
  273.             set { _registrant_fax = value; }
  274.         }
  275.  
  276.         public string registrant_phone
  277.         {
  278.             get { return _registrant_phone; }
  279.             set { _registrant_phone = value; }
  280.         }
  281.  
  282.         public string registrant_country
  283.         {
  284.             get { return _registrant_country; }
  285.             set { _registrant_country = value; }
  286.         }
  287.  
  288.         public string registrant_zip
  289.         {
  290.             get { return _registrant_zip; }
  291.             set { _registrant_zip = value; }
  292.         }
  293.  
  294.         public string registrant_state
  295.         {
  296.             get { return _registrant_state; }
  297.             set { _registrant_state = value; }
  298.         }
  299.  
  300.         public string registrant_city
  301.         {
  302.             get { return _registrant_city; }
  303.             set { _registrant_city = value; }
  304.         }
  305.  
  306.         public string registrant_street2
  307.         {
  308.             get { return _registrant_street2; }
  309.             set { _registrant_street2 = value; }
  310.         }
  311.  
  312.         public string registrant_street1
  313.         {
  314.             get { return _registrant_street1; }
  315.             set { _registrant_street1 = value; }
  316.         }
  317.  
  318.         public string registrant_org
  319.         {
  320.             get { return _registrant_org; }
  321.             set { _registrant_org = value; }
  322.         }
  323.  
  324.         public string registrant
  325.         {
  326.             get { return _registrant; }
  327.             set { _registrant = value; }
  328.         }
  329.  
  330.         public string ns4
  331.         {
  332.             get { return _ns4; }
  333.             set { _ns4 = value; }
  334.         }
  335.  
  336.         public string ns3
  337.         {
  338.             get { return _ns3; }
  339.             set { _ns3 = value; }
  340.         }
  341.  
  342.         public string ns2
  343.         {
  344.             get { return _ns2; }
  345.             set { _ns2 = value; }
  346.         }
  347.  
  348.         public string ns1
  349.         {
  350.             get { return _ns1; }
  351.             set { _ns1 = value; }
  352.         }
  353.  
  354.         public bool expired
  355.         {
  356.             get { return _expired; }
  357.             set { _expired = value; }
  358.         }
  359.  
  360.         public bool locked
  361.         {
  362.             get { return _locked; }
  363.             set { _locked = value; }
  364.         }
  365.  
  366.         public string autorenew
  367.         {
  368.             get { return _autorenew; }
  369.             set { _autorenew = value; }
  370.         }
  371.  
  372.         public DateTime modified
  373.         {
  374.             get { return _modified; }
  375.             set { _modified = value; }
  376.         }
  377.  
  378.         public DateTime created
  379.         {
  380.             get { return _created; }
  381.             set { _created = value; }
  382.         }
  383.  
  384.         public DateTime expires
  385.         {
  386.             get { return _expires; }
  387.             set { _expires = value; }
  388.         }
  389.  
  390.         public string domain
  391.         {
  392.             get { return _domain; }
  393.             set { _domain = value; }
  394.         }
  395.  
  396.  
  397.         public string account_id
  398.         {
  399.             get { return _account_id; }
  400.             set { _account_id = value; }
  401.         }
  402.  
  403.  
  404.     }
  405. }
  406.