ban some user

This commit is contained in:
2019-01-25 17:33:20 +00:00
parent 7e527baf7a
commit b0c8b873c0

View File

@ -30,5 +30,17 @@ namespace Yavsc.Models.Access
{ {
get; set; get; set;
} }
[Required]
public string TargetId
{
get; set;
}
[ForeignKey("TargetId")]
public virtual ApplicationUser TargetUser {
get; set;
}
} }
} }