16 lines
377 B
C#
16 lines
377 B
C#
|
using PluginsConventionLibrary;
|
|||
|
|
|||
|
namespace PortalAccountsView
|
|||
|
{
|
|||
|
public class PluginsConventionAccount : PluginsConventionElement
|
|||
|
{
|
|||
|
public string Login { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string? Warnings { get; set; }
|
|||
|
|
|||
|
public string RoleName { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string Rating { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|