10 lines
146 B
Text
10 lines
146 B
Text
|
using System;
|
||
|
|
||
|
#nullable enable
|
||
|
|
||
|
public struct Student
|
||
|
{
|
||
|
public string FirstName;
|
||
|
public string? MiddleName;
|
||
|
public string LastName;
|
||
|
}
|