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.
19 lines
359 B
19 lines
359 B
using Model;
|
|
|
|
namespace AppContext.Entities;
|
|
|
|
public class TacticStepEntity
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
public int TacticId { get; set; }
|
|
public TacticEntity Tactic { get; set; }
|
|
|
|
|
|
public required int? ParentId { get; set; }
|
|
public TacticStepEntity? Parent { get; set; }
|
|
|
|
public required string JsonContent { get; set; }
|
|
} |