You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
downkyi/DownKyi/ViewModels/Friends/ViewFollowerViewModel.cs

26 lines
472 B

using Prism.Events;
namespace DownKyi.ViewModels.Friends
{
public class ViewFollowerViewModel : BaseViewModel
{
public const string Tag = "PageFriendsFollower";
3 years ago
#region 页面属性申明
#endregion
public ViewFollowerViewModel(IEventAggregator eventAggregator) : base(eventAggregator)
{
3 years ago
#region 属性初始化
#endregion
}
#region 命令申明
#endregion
}
}