File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -15,6 +15,10 @@ public partial class MicrosoftGraphRscConfiguration :
1515 IMicrosoftGraphRscConfigurationInternal ,
1616 Runtime . IValidates
1717 {
18+ private readonly PropertyTracker _propertyTracker = new PropertyTracker ( ) ;
19+ public void TrackProperty ( string propertyName ) => _propertyTracker . TrackProperty ( propertyName ) ;
20+ public bool IsPropertySet ( string propertyName ) => _propertyTracker . IsPropertySet ( propertyName ) ;
21+ public T SanitizeValue < T > ( object value ) => PropertyTracker . SanitizeValue < T > ( value ) ;
1822 /// <summary>
1923 /// Backing field for Inherited model <see cref= "Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphEntity" />
2024 /// </summary>
Original file line number Diff line number Diff line change @@ -15,6 +15,11 @@ public partial class MicrosoftGraphTeamsAppPreApproval :
1515 IMicrosoftGraphTeamsAppPreApprovalInternal ,
1616 Runtime . IValidates
1717 {
18+ private readonly PropertyTracker _propertyTracker = new PropertyTracker ( ) ;
19+ public void TrackProperty ( string propertyName ) => _propertyTracker . TrackProperty ( propertyName ) ;
20+ public bool IsPropertySet ( string propertyName ) => _propertyTracker . IsPropertySet ( propertyName ) ;
21+ public T SanitizeValue < T > ( object value ) => PropertyTracker . SanitizeValue < T > ( value ) ;
22+
1823 /// <summary>
1924 /// Backing field for Inherited model <see cref= "Microsoft.Graph.Beta.PowerShell.Models.IMicrosoftGraphEntity" />
2025 /// </summary>
You can’t perform that action at this time.
0 commit comments