18 lines
388 B
C#
18 lines
388 B
C#
using ChaosBot.Attribute;
|
|
|
|
namespace ChaosBot.Database.Entity
|
|
{
|
|
[DBEntity("LodestoneFreeCompany")]
|
|
public class LodestoneFreeCompany
|
|
{
|
|
[DBUnique]
|
|
public string id { get; }
|
|
public string name { get; }
|
|
|
|
public LodestoneFreeCompany(string id, string name)
|
|
{
|
|
this.id = id;
|
|
this.name = name;
|
|
}
|
|
}
|
|
} |