SingleReturnData.cs 271 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace CLIP.eForm.Consent.Entity {
  6. [Serializable]
  7. public class SingleReturnData {
  8. public SingleReturnData() {
  9. }
  10. public string responseData { get; set; }
  11. }
  12. }