Add contracts annotations
This commit is contained in:
parent
bddecdef2b
commit
2721f57b9c
@ -4,7 +4,13 @@ public sealed class UserData
|
|||||||
{
|
{
|
||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Имя пользователя
|
||||||
|
/// </summary>
|
||||||
public string Username { get; set; }
|
public string Username { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Список идентити пользователя
|
||||||
|
/// </summary>
|
||||||
public UserIdentityData[] Identities { get; set; }
|
public UserIdentityData[] Identities { get; set; }
|
||||||
}
|
}
|
||||||
@ -4,7 +4,13 @@ public sealed class UserIdentityData
|
|||||||
{
|
{
|
||||||
public long Id { get; set; }
|
public long Id { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Тип
|
||||||
|
/// </summary>
|
||||||
public UserIdentityType Type { get; set; }
|
public UserIdentityType Type { get; set; }
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Идентити
|
||||||
|
/// </summary>
|
||||||
public string Identity { get; set; }
|
public string Identity { get; set; }
|
||||||
}
|
}
|
||||||
Loading…
Reference in New Issue
Block a user