forked from EllieBotDevs/elliebot
14 lines
No EOL
412 B
C#
14 lines
No EOL
412 B
C#
#nullable disable
|
|
namespace EllieBot.Db;
|
|
|
|
public class WaifuInfoStats
|
|
{
|
|
public int WaifuId { get; init; }
|
|
public string FullName { get; init; }
|
|
public long Price { get; init; }
|
|
public string ClaimerName { get; init; }
|
|
public string AffinityName { get; init; }
|
|
public int AffinityCount { get; init; }
|
|
public int DivorceCount { get; init; }
|
|
public int ClaimCount { get; init; }
|
|
} |