namespace zero.Architecture; public enum BlueprintStatus { /// /// This entity is standalone /// Standalone = 0, /// /// This entity is a blueprint /// Parent = 1, /// /// This entity is a child of blueprint /// Child = 2 }