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