using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Teso_API.Models { public class ThirdPerson { public TesoUser user { get; set; } public List following { get; set; } public List friends { get; set; } public List posts { get; set; } public string relation { get; set; } } }