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; public float? Rating { get; set; } = null; public int RoleId { get; set; } } }