11 lines
313 B
C#
11 lines
313 B
C#
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})";
|
|
}
|