mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-11-27 10:06:53 -08:00
20 lines
423 B
C#
20 lines
423 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace sodoff.Model {
|
|
public class TaskStatus {
|
|
public int Id { get; set; }
|
|
|
|
public int MissionId { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public int VikingId { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public virtual Viking? Viking { get; set; }
|
|
|
|
public string? Payload { get; set; }
|
|
|
|
public bool Completed { get; set; } = false;
|
|
}
|
|
}
|