using Knoks.Core.Entities.Interfaces; using System; namespace Knoks.Core.Entities { public class KnokserProfile : IApiResult { public long? UserId { get; set; } public string Href { get; set; } public string UserName { get; set; } public string FirstName { get; set; } public string LastName { get; set; } public bool HasAvatar { get; set; } public int UserFollowers { get; set; } public int RatingPoints { get; set; } public UserRank KnokserRank { get; set; } public DateTime RegistrationDate { get; set; } public decimal BoughtBy { get; set; } public short? DistanceFromTarget { get; set; } public short? SuccessRate { get; set; } public int PublishedKnoks { get; set; } public int SuccessSequence { get; set; } } }