Files
Knots/Knots/DTO/User/UpdateUserContactDto.cs
T

8 lines
172 B
C#

namespace Knots.DTO.User;
public class UpdateUserContactDto
{
public int Id { get; set; }
public string? Email { get; set; }
public string? Tel { get; set; }
}