| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace com.steering.pss.qcm.model
- {
- class GenericEntity
- {
- private string maxValue = "";
- public string MaxValue
- {
- get { return maxValue; }
- set { maxValue = value; }
- }
- private string count = "";
- public string Count
- {
- get { return count; }
- set { count = value; }
- }
- private int value = 9;
- public int Value
- {
- get { return this.value; }
- set { this.value = value; }
- }
- private string value2 = "";
- public string Value2
- {
- get { return value2; }
- set { value2 = value; }
- }
- private string test = "";
- public string Test
- {
- get { return test; }
- set { test = value; }
- }
- }
- }
|