25'ten fazla konu seçemezsiniz
Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
|
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
-
- namespace BPASmartClient.Model
- {
- public class SimOrderVisibleData
- {
-
- //public string ClientDeviceType { get { return _mClientDeviceType; } set { _mClientDeviceType = value; } }
- //private string _mClientDeviceType;
-
- public ushort Loc { get { return _mLoc; } set { _mLoc = value; } }
- private ushort _mLoc;
-
- public bool IsEnable { get { return _mIsEnable; } set { _mIsEnable = value; } }
- private bool _mIsEnable;
-
- public bool IsSelected { get { return _mIsSelected; } set { _mIsSelected = value; IsEnable = !value; } }
- private bool _mIsSelected;
-
- public string Text { get { return _mText; } set { _mText = value; } }
- private string _mText;
-
- public ushort MinValue { get { return _mMinValue; } set { _mMinValue = value; } }
- private ushort _mMinValue;
-
- public ushort MaxValue { get { return _mMaxValue; } set { _mMaxValue = value; } }
- private ushort _mMaxValue;
-
-
-
- }
- }
|