21 lines
551 B
C#
21 lines
551 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Assets.Scripts.Apis.Models
|
|
{
|
|
public class UserModel
|
|
{
|
|
public string NickName { get; set; }
|
|
public int Ftp { get; set; }
|
|
public double Weight { get; set; }
|
|
public double BicycleWeight { get; set; }
|
|
public string Carlories { get; set; }
|
|
public string Avatar { get; set; }
|
|
public double Distance { get; set; }
|
|
public string Climb { get; set; }
|
|
}
|
|
}
|