mirror of
				https://gitlab.com/Kwoth/nadekobot.git
				synced 2025-11-03 16:24:27 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			255 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			255 B
		
	
	
	
		
			C#
		
	
	
	
	
	
#nullable disable
 | 
						|
namespace Nadeko.Bot.Db.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; }
 | 
						|
}
 |