12 lines
318 B
C#
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; }
|
|
}
|