18 lines
390 B
C#
18 lines
390 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace SessionCompanion.Database.Tables
|
|||
|
{
|
|||
|
public class Shopkeeper : BaseEntity
|
|||
|
{
|
|||
|
public string Name { get; set; }
|
|||
|
|
|||
|
public bool IsAvailable { get; set; }
|
|||
|
|
|||
|
public virtual ICollection<ShopkeeperItem> ShopkeeperItems { get; set; }
|
|||
|
}
|
|||
|
}
|