电子药箱通讯服务端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

BaseSnapshotModel.cs 540B

1234567891011121314151617181920212223242526
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Runtime.Serialization;
  6. using System.Text;
  7. namespace RDH.Data.Models
  8. {
  9. [Serializable]
  10. [DataContract]
  11. public abstract class BaseSnapshotModel : BaseModel
  12. {
  13. private Decimal _endFlag;
  14. public Decimal EndFlag
  15. {
  16. get { return _endFlag; }
  17. set
  18. {
  19. _endFlag = value;
  20. OnPropertyChanged("EndFlag");
  21. }
  22. }
  23. }
  24. }