mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
13 lines
249 B
C#
13 lines
249 B
C#
#nullable disable
|
|
namespace NadekoBot.Db.Models;
|
|
|
|
public class WaifuLbResult
|
|
{
|
|
public string WaifuName { get; set; }
|
|
|
|
public string ClaimerName { get; set; }
|
|
|
|
public string Affinity { get; set; }
|
|
|
|
public long Price { get; set; }
|
|
} |