19 lines
510 B
C#
Raw Normal View History

2023-12-01 01:01:22 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using AccountsDataModels.Models;
namespace AccountContracts.BindingModels
{
public class AccountBindingModel : IAccountModel
{
public int Id { get; set; }
public string Login { get; set; } = string.Empty;
public string? Warnings { get; set; } = string.Empty;
2023-12-01 01:17:26 +04:00
public float? Rating { get; set; } = null;
2023-12-01 01:01:22 +04:00
public int RoleId { get; set; }
}
}