-
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 17, 2023
1 parent
20ef108
commit 745f57d
Showing
5 changed files
with
81 additions
and
2 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
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
25 changes: 25 additions & 0 deletions
25
src/CIS.Service.Client/Models/ImpersonatingPersistentClassList.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,25 @@ | ||
using System.Collections.Generic; | ||
|
||
namespace CIS.Service.Client.Models | ||
{ | ||
/// <summary> | ||
/// The persistent class list with user impersonating feature. | ||
/// </summary> | ||
public class ImpersonatingPersistentClassList | ||
{ | ||
/// <summary> | ||
/// Gets or sets the user. | ||
/// </summary> | ||
public ImpersonatingUser User { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the object. | ||
/// </summary> | ||
public List<string> ObjectClassNames { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the WithAttributes flag. | ||
/// </summary> | ||
public bool WithAttributes { 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