12 lines
282 B
C#
12 lines
282 B
C#
|
namespace Students
|
|||
|
{
|
|||
|
/// <summary>
|
|||
|
/// Не можем унаследоваться от этого класса - sealed
|
|||
|
/// </summary>
|
|||
|
sealed class Student
|
|||
|
{
|
|||
|
public string FirstName { get; set; }
|
|||
|
public string LastName { get; set; }
|
|||
|
}
|
|||
|
}
|