19 lines
482 B
C#
19 lines
482 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace Serwer.Infrastructure.DTO
|
|||
|
{
|
|||
|
public class UserDto
|
|||
|
{
|
|||
|
public string Email { get; set; }
|
|||
|
public string Name { get; set; }
|
|||
|
public string Surname { get; set; }
|
|||
|
public string Login { get; set; }
|
|||
|
public DateTime CreatedAt { get; protected set; }
|
|||
|
public DateTime UpdatedAt { get; protected set; }
|
|||
|
}
|
|||
|
}
|