97743f6974
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
11 lines
457 B
C#
11 lines
457 B
C#
using System.ComponentModel.DataAnnotations;
|
|
namespace ROLAC.API.DTOs.Users;
|
|
|
|
public class CreateUserRequest
|
|
{
|
|
[Required] public int MemberId { get; set; }
|
|
[Required, EmailAddress] public string Email { get; set; } = "";
|
|
[Required, MinLength(1)] public List<string> Roles { get; set; } = [];
|
|
public string LanguagePreference { get; set; } = "en";
|
|
}
|