Removing ? marks for [Nullable] for Clean Compile

This commit is contained in:
Sean "Solao Bajiuik" Stoves 2020-08-05 19:33:24 -04:00
parent 965a7faebd
commit ee86714ca9
2 changed files with 11 additions and 4 deletions

View File

@ -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;
}
}

View File

@ -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;