123456789101112131415161718 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- namespace CLIP.eForm.Consent.Entity {
- [Serializable]
- public class SingleReturnData {
- public SingleReturnData() {
- }
- public string responseData { get; set; }
- }
- }
|