chaosbot/ChaosBot/Models/LodestoneCharacter.cs

16 lines
320 B
C#

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