This commit is contained in:
younes elhaddoury
2025-09-17 10:28:02 +02:00
parent 9c8fb9b205
commit bb13759af4
288 changed files with 102393 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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
}