Skip to content
Snippets Groups Projects
UserPreviewDto.cs 325 B
Newer Older
esantangelo's avatar
esantangelo committed
using System;
using System.Collections.Generic;
using System.Text;

namespace Tsi1.BusinessLayer.Dtos
{
    public class UserPreviewDto
    {
        public int Id { get; set; }

        public string FirstName { get; set; }

        public string LastName { get; set; }
esantangelo's avatar
esantangelo committed

        public string Email { get; set; }