16 lines
382 B
C#
16 lines
382 B
C#
using PluginsConventionLibrary;
|
|
|
|
namespace PortalAccountsView
|
|
{
|
|
public class PluginsConventionAccount : PluginsConventionElement
|
|
{
|
|
public string Login { get; set; } = string.Empty;
|
|
|
|
public string? AvatarPath { get; set; }
|
|
|
|
public string InterestName { get; set; } = string.Empty;
|
|
|
|
public string Email { get; set; } = string.Empty;
|
|
}
|
|
}
|