using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace rawLambda.model { internal class GitUser { public string login { get; set; } = string.Empty; public string type { get; set; } = string.Empty; } }