Removing ? marks for [Nullable] for Clean Compile
This commit is contained in:
parent
965a7faebd
commit
ee86714ca9
@ -1,3 +1,5 @@
|
|||||||
|
using Antlr4.Runtime.Misc;
|
||||||
|
|
||||||
namespace ChaosBot.Lodestone
|
namespace ChaosBot.Lodestone
|
||||||
{
|
{
|
||||||
public class Character
|
public class Character
|
||||||
@ -5,10 +7,13 @@ namespace ChaosBot.Lodestone
|
|||||||
public string Avatar;
|
public string Avatar;
|
||||||
public int FeastMatches;
|
public int FeastMatches;
|
||||||
public long ID;
|
public long ID;
|
||||||
public string? Lang;
|
[Nullable]
|
||||||
|
public string Lang;
|
||||||
public string Name;
|
public string Name;
|
||||||
public string? Rank;
|
[Nullable]
|
||||||
public string? RankIcon;
|
public string Rank;
|
||||||
|
[Nullable]
|
||||||
|
public string RankIcon;
|
||||||
public string Server;
|
public string Server;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1,4 +1,5 @@
|
|||||||
using System.Collections.Generic;
|
using System.Collections.Generic;
|
||||||
|
using Antlr4.Runtime.Misc;
|
||||||
|
|
||||||
namespace ChaosBot.Lodestone
|
namespace ChaosBot.Lodestone
|
||||||
{
|
{
|
||||||
@ -19,7 +20,8 @@ namespace ChaosBot.Lodestone
|
|||||||
public CharacterGrandCompany GrandCompany;
|
public CharacterGrandCompany GrandCompany;
|
||||||
public int GuardianDeity;
|
public int GuardianDeity;
|
||||||
public long ID;
|
public long ID;
|
||||||
public string? Lang;
|
[Nullable]
|
||||||
|
public string Lang;
|
||||||
public string Name;
|
public string Name;
|
||||||
public string Nameday;
|
public string Nameday;
|
||||||
public long ParseDate;
|
public long ParseDate;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user