2024-11-25 16:05:52 +04:00
|
|
|
namespace Contracts.DTO;
|
|
|
|
|
|
|
|
public class UserDto
|
|
|
|
{
|
2024-11-25 16:59:13 +04:00
|
|
|
public Guid Id { get; set; }
|
|
|
|
public string Name { get; set; } = string.Empty;
|
|
|
|
public string Password { get; set; } = string.Empty;
|
|
|
|
public decimal Balance { get; set; }
|
2024-11-25 16:05:52 +04:00
|
|
|
}
|