Two things:
* User views its devices, from a /manage index link * Yavsc.Server resurection
This commit is contained in:
15
Yavsc.Server/Models/Identity/ReservedUserName.cs
Normal file
15
Yavsc.Server/Models/Identity/ReservedUserName.cs
Normal file
@ -0,0 +1,15 @@
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
using System.ComponentModel.DataAnnotations.Schema;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Yavsc.Models.Identity
|
||||
{
|
||||
public class ReservedUserName : IWatchedUserName {
|
||||
|
||||
[Key]
|
||||
[StringLength(1024)]
|
||||
public string Name { get; set;}
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user