Files
FlyTeam/source/repos/LEA/LEA/Models/Application.cs
younes elhaddoury 562f7ff255 first commit
2025-09-16 09:45:26 +02:00

12 lines
318 B
C#

namespace LEA.Models;
public class Application
{
public int Id { get; set; }
public string Company { get; set; } = "";
public string Position { get; set; } = "";
public DateTime AppliedOn { get; set; }
public string Status { get; set; } = "Ausstehend";
public string? Notes { get; set; }
}