11 lines
214 B
C#
11 lines
214 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Apimanager_backend.Dtos
|
|
{
|
|
public class UpdateUserDto
|
|
{
|
|
public string? password { get; set; }
|
|
}
|
|
}
|