forked from sanchezvem/PyroFetes
8 lines
183 B
C#
8 lines
183 B
C#
namespace PyroFetes.DTO.Login.Request;
|
|
|
|
public class UpdateLoginDto
|
|
{
|
|
public int Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public string? Password { get; set; }
|
|
} |