// Copyright (c) 2007-2018 ppy Pty Ltd . // Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE using System.ComponentModel.DataAnnotations.Schema; using osu.Game.Database; namespace osu.Game.Configuration { [Table("Settings")] public class DatabasedSetting : IHasPrimaryKey { [DatabaseGenerated(DatabaseGeneratedOption.Identity)] public int ID { get; set; } public int? RulesetID { get; set; } public int? Variant { get; set; } [Column("Key")] public int IntKey { get => (int)Key; private set => Key = value; } [Column("Value")] public string StringValue { get => Value.ToString(); set => Value = value; } public object Key; public object Value; public DatabasedSetting(object key, object value) { Key = key; Value = value; } /// /// Constructor for derived classes that may require serialisation. /// public DatabasedSetting() { } public override string ToString() => $"{Key}=>{Value}"; } }