-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
o.nadymov
committed
Oct 30, 2023
1 parent
745f57d
commit bb0a81f
Showing
4 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 20 additions & 0 deletions
20
src/CIS.Service.Client/Models/ImpersonatingDictionaryObject.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace CIS.Service.Client.Models | ||
{ | ||
/// <summary> | ||
/// The persistent object with user impersonating feature. | ||
/// </summary> | ||
public class ImpersonatingDictionaryObject | ||
{ | ||
/// <summary> | ||
/// Gets or sets the user. | ||
/// </summary> | ||
public ImpersonatingUser User { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the object. | ||
/// </summary> | ||
public Dictionary<string, object> Object { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters