예제 #1
0
 public TwittData(
     Profile data,
     Profile sender = null)
     : base(data.Name, data.ImageUrl)
 {
     Sender = sender;
 }
예제 #2
0
 public ProfileRate(Profile profile, int count)
     : base(profile.Name, profile.ImageUrl)
 {
     Count = count;
 }