8 lines
172 B
C#
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; }
|
|
} |