mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 16:28:50 -07:00
16 lines
354 B
C#
16 lines
354 B
C#
namespace sodoff.Model {
|
|
public class TaskStatus {
|
|
public int Id { get; set; }
|
|
|
|
public int MissionId { get; set; }
|
|
|
|
public string VikingId { get; set; } = null!;
|
|
|
|
public virtual Viking? Viking { get; set; }
|
|
|
|
public string? Payload { get; set; }
|
|
|
|
public bool Completed { get; set; } = false;
|
|
}
|
|
}
|