mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-11 01:38:27 -04:00
10 lines
268 B
C#
10 lines
268 B
C#
#nullable disable
|
|
namespace NadekoBot.Services.Database.Models;
|
|
|
|
public class WaifuItem : DbEntity
|
|
{
|
|
public WaifuInfo WaifuInfo { get; set; }
|
|
public int? WaifuInfoId { get; set; }
|
|
public string ItemEmoji { get; set; }
|
|
public string Name { get; set; }
|
|
} |