mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
17 lines
387 B
C#
17 lines
387 B
C#
using System;
|
|
|
|
namespace NadekoBot.Core.Services.Database.Models
|
|
{
|
|
public class WaifuItem : DbEntity
|
|
{
|
|
public int? WaifuInfoId { get; set; }
|
|
public string ItemEmoji { get; set; }
|
|
public string Name { get; set; }
|
|
|
|
|
|
[Obsolete]
|
|
public int Price { get; set; }
|
|
[Obsolete]
|
|
public int Item { get; set; }
|
|
}
|
|
} |