/// <summary>
 /// Initializes new ActivityPostAttachmentPhotoInfo object
 /// </summary>
 /// <param name="photo">Photo information</param>
 internal ActivityPostAttachmentPhotoInfo(stream_photo photo)
 {
     this.AlbumId = photo.aid;
     this.PhotoId = photo.pid;
     this.Owner   = photo.owner;
     this.Index   = photo.index;
 }
Esempio n. 2
0
 internal FacebookStreamPhoto(stream_photo photo)
 {
     AlbumId = photo.aid;
     Index   = photo.index;
     Owner   = photo.owner;
     PhotoId = photo.pid;
 }