blob: 53bea9e7233737b84eee1dd3dbec574c0e9b360e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
using System.ComponentModel.DataAnnotations;
using System.Diagnostics.CodeAnalysis;
namespace DevHive.Services.Models.Identity.Role
{
public class CreateRoleServiceModel
{
[NotNull]
[Required]
[MinLength(3)]
[MaxLength(50)]
public string Name { get; set; }
}
}
|