Files
Knots/Knots/DTO/User/UpdateUserDescriptionDto.cs
2026-03-26 17:49:43 +01:00

7 lines
143 B
C#

namespace Knots.DTO.User;
public class UpdateUserDescriptionDto
{
public int Id { get; set; }
public string? Description {get; set;}
}