comparison SSRS/SSRS.Services.DTO/Parameter.cs @ 113:954f66bb8dbf

Portable library added for DTO
author adminsh@apollo
date Sat, 19 May 2012 16:21:07 +0100
parents
children
comparison
equal deleted inserted replaced
112:b9d5f934cb21 113:954f66bb8dbf
1 namespace SSRS.Services.DTO
2 {
3 public class Parameter
4 {
5 public string[] DefaultValues { get; set; }
6 public string Name { get; set; }
7 public bool Nullable { get; set; }
8 public string ParameterType { get; set; }
9 public string Value { get; set; }
10 }
11 }