예제 #1
0
 public GitHubUser(string name, string company, DateTimeOffset createdAt, GitHubFollowers followers)
 {
     Name                = name;
     Company             = company;
     AccountCreationDate = createdAt;
     FollowerCount       = followers.Count;
 }
예제 #2
0
 public GitHubUser(GitHubFollowers followers) => Followers = followers;