elliebot/src/Ellie.Bot.Modules.Gambling/Gambling/Waifus/db/WaifuLbResult.cs
2023-08-03 21:33:06 +12:00

16 lines
No EOL
390 B
C#

#nullable disable
namespace Ellie.Services.Database.Models;
public class WaifuLbResult
{
public string Username { get; set; }
public string Discrim { get; set; }
public string Claimer { get; set; }
public string ClaimerDiscrim { get; set; }
public string Affinity { get; set; }
public string AffinityDiscrim { get; set; }
public long Price { get; set; }
}