Skip to content

Commit

Permalink
Make the default value type an object.
Browse files Browse the repository at this point in the history
  • Loading branch information
KillzXGaming committed Nov 11, 2023
1 parent e5a67d5 commit 7093ba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Fushigi.Byml/Serializer/BymlProperty.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ namespace Fushigi.Byml.Serializer
public class BymlProperty : Attribute
{
public string Key { get; set; }
public dynamic DefaultValue { get; set; }
public object DefaultValue { get; set; }

public bool Optional = true;

Expand Down

0 comments on commit 7093ba7

Please sign in to comment.