PIbd-31_Rodionov.I.A._COP_28/COP/PortalAccountsDataModels/Models/IAccountModel.cs

14 lines
229 B
C#
Raw Normal View History

2024-10-22 19:42:03 +04:00
namespace PortalAccountsDataModels.Models
{
public interface IAccountModel : IId
{
string Login { get; }
string? Warnings { get; }
int RoleId { get; }
double? Rating { get; }
}
}