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; } } }