Add Population Target and more deriveds

This commit is contained in:
2024-09-25 19:01:49 +02:00
parent efa5d452ea
commit cafa45bed3
4 changed files with 47 additions and 13 deletions

View File

@ -5,7 +5,7 @@ namespace StarsAssistant.Model;
public class Planet
{
#region Persistant propeties
#region Persistant propeties (from Stars)
[Key]
public required string Name { get; set; }
@ -80,6 +80,13 @@ public class Planet
#endregion
#region Planning Properties
public int PopulationTargetPercent { get; set; } = 100;
#endregion
#region Relationships
public Race? Owner { get; set; }