using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace NETCoreMySQL { public class User { public int Id { get; set; } public string UserName { get; set; } public string Url { get; set; } public int Age { get; set; } } }