using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace MAUICollectionViewTest.Models { internal class Player { public int PlayerId { get; set; } public string PlayerName { get; set; } public string PlayerImage { get; set; } public string Country { get; set; } } }