using System; using System.Collections.Generic; #nullable disable namespace ChaosBot.Models { public partial class LodestoneCharacter { public int? Id { get; set; } public string Name { get; set; } public string Avatar { get; set; } public long? UserId { get; set; } } }