diff --git a/PC2/Models/People.cs b/PC2/Models/People.cs index e65e152..dd552b6 100644 --- a/PC2/Models/People.cs +++ b/PC2/Models/People.cs @@ -1,4 +1,4 @@ -using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations; namespace PC2.Models { @@ -69,4 +69,12 @@ public string? PhoneDisplay } } } + + /// + /// Represents a member of the steering committee + /// + public class SteeringCommittee : People + { + + } } diff --git a/PC2/Models/SteeringCommittee.cs b/PC2/Models/SteeringCommittee.cs deleted file mode 100644 index a842156..0000000 --- a/PC2/Models/SteeringCommittee.cs +++ /dev/null @@ -1,6 +0,0 @@ -namespace PC2.Models -{ - public class SteeringCommittee : People - { - } -}