minor change

This commit is contained in:
Jicheng Lu 2025-07-14 17:31:03 -05:00
parent 4e6e3f5e11
commit 1662dde419

View file

@ -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
};
}
}