You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Dotnet-WebAPI/AppContext/Entities/TacticStepEntity.cs

16 lines
448 B

using Model;
namespace AppContext.Entities;
public class TacticStepEntity
{
public required int TacticId { get; set; }
public Tactic Tactic { get; set; }
public required int ParentId { get; set; }
public TacticStepEntity Parent { get; set; }
public IEnumerable<TacticStepEntity> Children { get; set; } = new List<TacticStepEntity>();
public int StepId { get; set; }
public required string JsonContent { get; set; }
}