19 lines
291 B
C#
19 lines
291 B
C#
using System.ComponentModel.DataAnnotations;
|
|
|
|
namespace LEA.Models;
|
|
|
|
public enum ApplicationStatus
|
|
{
|
|
[Display(Name = "Beworben")]
|
|
Applied,
|
|
|
|
[Display(Name = "Interview")]
|
|
Interview,
|
|
|
|
[Display(Name = "Angebot")]
|
|
Offer,
|
|
|
|
[Display(Name = "Abgelehnt")]
|
|
Rejected
|
|
}
|