You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
539 B
C#
17 lines
539 B
C#
// Licensed to the .NET Foundation under one or more agreements.
|
|
// The .NET Foundation licenses this file to you under the MIT license.
|
|
|
|
namespace EFCore.Jet.CustomBaseTests.GearsOfWarModel;
|
|
|
|
public class LocustCommander : LocustLeader
|
|
{
|
|
public LocustHorde CommandingFaction { get; set; }
|
|
|
|
public string DefeatedByNickname { get; set; }
|
|
public int? DefeatedBySquadId { get; set; }
|
|
public Gear DefeatedBy { get; set; }
|
|
|
|
public LocustHighCommand HighCommand { get; set; }
|
|
public int HighCommandId { get; set; }
|
|
}
|