123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace CollaborativePlatformMain.DFEntity.MessageSubUtil
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public class LevelTableEntity : INotifyPropertyChanged
- {
- public LevelTableEntity()
- {
- }
-
-
-
-
-
-
- public LevelTableEntity(string juID, string levelNmae, double structuralElevation, double floorHeight)
- {
- LevelNmae = levelNmae;
- StructuralElevation = structuralElevation;
- FloorHeight = floorHeight;
- JuID = juID;
- }
-
-
-
- public string JuID { get; set; }
-
-
-
- public string levelNmae { get; set; }
- public string LevelNmae
- {
- get { return levelNmae; }
- set
- {
- if (value != levelNmae)
- {
- levelNmae = value;
- NotifyPropertyChanged("LevelNmae");
- }
- }
- }
-
-
-
- public double structuralElevation { get; set; }
- public double StructuralElevation
- {
- get { return structuralElevation; }
- set
- {
- if (value != structuralElevation)
- {
- structuralElevation = value;
- NotifyPropertyChanged("StructuralElevation");
- }
- }
- }
-
- public double floorHeight { get; set; }
- public double FloorHeight
- {
- get { return floorHeight; }
- set
- {
- if (value != floorHeight)
- {
- floorHeight = value;
- NotifyPropertyChanged("FloorHeight");
- }
- }
- }
- public event PropertyChangedEventHandler PropertyChanged;
- private void NotifyPropertyChanged(string propertyName = "")
- {
- PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
- }
- }
- }
|