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
|
||||
{
|
||||
public class Character
|
||||
@ -5,10 +7,13 @@ namespace ChaosBot.Lodestone
|
||||
public string Avatar;
|
||||
public int FeastMatches;
|
||||
public long ID;
|
||||
public string? Lang;
|
||||
[Nullable]
|
||||
public string Lang;
|
||||
public string Name;
|
||||
public string? Rank;
|
||||
public string? RankIcon;
|
||||
[Nullable]
|
||||
public string Rank;
|
||||
[Nullable]
|
||||
public string RankIcon;
|
||||
public string Server;
|
||||
}
|
||||
}
|
||||
@ -1,4 +1,5 @@
|
||||
using System.Collections.Generic;
|
||||
using Antlr4.Runtime.Misc;
|
||||
|
||||
namespace ChaosBot.Lodestone
|
||||
{
|
||||
@ -19,7 +20,8 @@ namespace ChaosBot.Lodestone
|
||||
public CharacterGrandCompany GrandCompany;
|
||||
public int GuardianDeity;
|
||||
public long ID;
|
||||
public string? Lang;
|
||||
[Nullable]
|
||||
public string Lang;
|
||||
public string Name;
|
||||
public string Nameday;
|
||||
public long ParseDate;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user