Committee

Namespace: Commissiestrijd.Models
Assembly: backend.dll

Represents a committee in the application. This class is used to define the properties of a committee, including its name. The Name property is marked as required and serves as the primary key for the committee.

public class Committee

Inheritance

objectCommittee


Properties


Name

The name of the committee. This property is required and serves as the primary key for the committee.

[Column("Name")]
[Key]
public required string Name { get; set; }

Property Value

string