Skip to content

Commit

Permalink
Merge pull request #63 from micah686/trait-fix
Browse files Browse the repository at this point in the history
Added features to Trait class
  • Loading branch information
Nikey646 authored May 28, 2020
2 parents a05c868 + 7a66cc0 commit ff383f1
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion VndbSharp/Models/Dumps/Trait.cs
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,17 @@ public class Trait
/// </summary>
public ReadOnlyCollection<UInt32> Parents { get; private set; }
/// <summary>
/// Undescribed Field
/// Whether this is a meta trait or not.
/// </summary>
[JsonProperty("meta")]
public Boolean IsMeta { get; private set; }
/// <summary>
/// Whether it's possible to filter characters by this trait.
/// </summary>
public Boolean IsSearchable { get; private set; }
/// <summary>
/// Whether this trait can be applied to character entries.
/// </summary>
public Boolean IsApplicable { get; private set; }
}
}

0 comments on commit ff383f1

Please sign in to comment.