map improvement

user picture
image crop
This commit is contained in:
2011-03-31 06:24:59 +03:00
parent 833083ca0e
commit c0d31a8652
65 changed files with 3128 additions and 41 deletions
@@ -0,0 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace MyFriendsAround.Common.Entities
{
public class PictureInfo
{
public virtual string UserId { get; set; }
public virtual string Picture { get; set; }
}
}