2018-05-07 10:07:37 +02:00
|
|
|
using System.ComponentModel.DataAnnotations;
|
2019-09-04 01:25:36 +01:00
|
|
|
using Yavsc.Attributes.Validation;
|
2018-05-07 10:07:37 +02:00
|
|
|
|
|
|
|
|
namespace Yavsc.Models.Identity
|
|
|
|
|
{
|
|
|
|
|
public class ReservedUserName : IWatchedUserName {
|
|
|
|
|
|
|
|
|
|
[Key]
|
2019-09-04 01:25:36 +01:00
|
|
|
[YaStringLength(1024)]
|
2018-05-07 10:07:37 +02:00
|
|
|
public string Name { get; set;}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|