minor change
This commit is contained in:
parent
4e6e3f5e11
commit
1662dde419
|
|
@ -7,6 +7,15 @@ public class SideCarOptions
|
|||
|
||||
public static SideCarOptions Empty()
|
||||
{
|
||||
return new SideCarOptions();
|
||||
return new();
|
||||
}
|
||||
|
||||
public static SideCarOptions InheritStates(IEnumerable<string>? targetStates = null)
|
||||
{
|
||||
return new()
|
||||
{
|
||||
IsInheritStates = true,
|
||||
InheritStateKeys = targetStates
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue