Department property
      
      String?
      get
      Department
      
    
    
Implementation
String? get Department =>
    this.PropertyBag[ContactSchema.Department] as String?;
      
      set
      Department
      (String? value) 
      
    
    
    
Implementation
set Department(String? value) =>
    this.PropertyBag[ContactSchema.Department] = value;