-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUser.cs
More file actions
41 lines (39 loc) · 945 Bytes
/
User.cs
File metadata and controls
41 lines (39 loc) · 945 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
//-----------------------------------------------------------------------
// <copyright file="User.cs" company="Studio A&T s.r.l.">
// Copyright (c) Studio A&T s.r.l. All rights reserved.
// </copyright>
// <author>Nicogis</author>
//-----------------------------------------------------------------------
namespace Studioat.ArcGis.Soe.Rest.TwoFAUtility
{
/// <summary>
/// class user
/// </summary>
public class User
{
/// <summary>
/// Gets or sets user
/// </summary>
public string Name
{
get;
set;
}
/// <summary>
/// Gets or sets secret key
/// </summary>
public string SecretKey
{
get;
set;
}
/// <summary>
/// Gets or sets issuer ID
/// </summary>
public string IssuerID
{
get;
set;
}
}
}