12 lines
No EOL
175 B
C#
12 lines
No EOL
175 B
C#
namespace BuildingDirectory.Model;
|
|
|
|
/// <summary>
|
|
/// Represents a floor in a building
|
|
/// </summary>
|
|
public enum Floor
|
|
{
|
|
Ground,
|
|
First,
|
|
Second,
|
|
Third
|
|
} |