Add project
This commit is contained in:
10
Common/Dtos/Student/StudentBasicDto.cs
Normal file
10
Common/Dtos/Student/StudentBasicDto.cs
Normal file
@@ -0,0 +1,10 @@
|
||||
namespace Common.Dtos.Student;
|
||||
|
||||
public class StudentBasicDto
|
||||
{
|
||||
public Guid Id { get; set; }
|
||||
public string? FirstName { get; set; }
|
||||
public string? LastName { get; set; }
|
||||
public string? AlbumNumber { get; set; }
|
||||
public string FullNameReverese => $"{LastName} {FirstName} ({AlbumNumber})";
|
||||
}
|
||||
Reference in New Issue
Block a user