mirror of
https://github.com/claunia/marechai.git
synced 2025-12-16 19:14:25 +00:00
12 lines
258 B
C#
12 lines
258 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Marechai.Data.Models;
|
|
|
|
public sealed record UserRoleRequest
|
|
{
|
|
[Required]
|
|
[JsonPropertyName("roleName")]
|
|
public string RoleName { get; set; } = null!;
|
|
}
|