mirror of https://github.com/ppy/osu
Add ignore rules on more helper properties
This commit is contained in:
parent
67bf95bc91
commit
3bc091fe6d
|
@ -20,12 +20,14 @@ public class RealmKeyBinding : RealmObject, IHasGuidPrimaryKey, IKeyBinding
|
||||||
|
|
||||||
public int? Variant { get; set; }
|
public int? Variant { get; set; }
|
||||||
|
|
||||||
|
[Ignored]
|
||||||
public KeyCombination KeyCombination
|
public KeyCombination KeyCombination
|
||||||
{
|
{
|
||||||
get => KeyCombinationString;
|
get => KeyCombinationString;
|
||||||
set => KeyCombinationString = value.ToString();
|
set => KeyCombinationString = value.ToString();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Ignored]
|
||||||
public object Action
|
public object Action
|
||||||
{
|
{
|
||||||
get => ActionInt;
|
get => ActionInt;
|
||||||
|
|
|
@ -104,6 +104,7 @@ public APIUser User
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Ignored]
|
||||||
public ScoreRank Rank
|
public ScoreRank Rank
|
||||||
{
|
{
|
||||||
get => (ScoreRank)RankInt;
|
get => (ScoreRank)RankInt;
|
||||||
|
|
Loading…
Reference in New Issue