mirror of https://github.com/leiurayer/downkyi
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.
26 lines
472 B
26 lines
472 B
using Prism.Events;
|
|
|
|
namespace DownKyi.ViewModels.Friends
|
|
{
|
|
public class ViewFollowerViewModel : BaseViewModel
|
|
{
|
|
public const string Tag = "PageFriendsFollower";
|
|
|
|
#region 页面属性申明
|
|
|
|
#endregion
|
|
|
|
public ViewFollowerViewModel(IEventAggregator eventAggregator) : base(eventAggregator)
|
|
{
|
|
#region 属性初始化
|
|
|
|
#endregion
|
|
}
|
|
|
|
#region 命令申明
|
|
|
|
#endregion
|
|
|
|
}
|
|
}
|