Old question but you can also do this which I think it cleaner:
Assuming the default value of your object is null you can also use:
default()
e.g.
default(Member)
default(List)
etc.
Full Example:
var myRepo = new Mock();
myRepo
.Setup(p => p.GetAsync("name"))
.ReturnsAsync(default(List));