Files
LeaJobTrackerWebApp/Desktop/hallo/LEA/Models/ApplicationStatus.cs
younes elhaddoury bb13759af4 hallo
2025-09-17 10:28:02 +02:00

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
}