summaryrefslogtreecommitdiff
path: root/src/app/PlayingWithActiveReports.Core/Dto
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2007-11-02 17:03:42 -0600
committermo khan <mo@mokhan.ca>2007-11-02 17:03:42 -0600
commit36ffa9f174c831146ca5630a41b75c9d213f3db6 (patch)
tree3ba71964656b385995bb9557c87a05b131348ddf /src/app/PlayingWithActiveReports.Core/Dto
import from svntrunkmain
Diffstat (limited to 'src/app/PlayingWithActiveReports.Core/Dto')
-rw-r--r--src/app/PlayingWithActiveReports.Core/Dto/DisplayReportQuestionDto.cs19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/app/PlayingWithActiveReports.Core/Dto/DisplayReportQuestionDto.cs b/src/app/PlayingWithActiveReports.Core/Dto/DisplayReportQuestionDto.cs
new file mode 100644
index 0000000..6a8411c
--- /dev/null
+++ b/src/app/PlayingWithActiveReports.Core/Dto/DisplayReportQuestionDto.cs
@@ -0,0 +1,19 @@
+namespace PlayingWithActiveReports.Core.Dto {
+ public class DisplayReportQuestionDto {
+ public DisplayReportQuestionDto( string text, string answer ) {
+ _text = text;
+ _answer = answer;
+ }
+
+ public string Text {
+ get { return _text; }
+ }
+
+ public string Answer {
+ get { return _answer; }
+ }
+
+ private readonly string _answer;
+ private readonly string _text;
+ }
+} \ No newline at end of file