mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 19:17:25 +08:00
48 lines
1.1 KiB
C#
48 lines
1.1 KiB
C#
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
|
// See the LICENCE file in the repository root for full licence text.
|
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
|
using osu.Game.Database;
|
|
|
|
namespace osu.Game.Configuration
|
|
{
|
|
[Table("Settings")]
|
|
public class DatabasedSetting : IHasPrimaryKey
|
|
{
|
|
public int ID { get; set; }
|
|
|
|
public int? RulesetID { get; set; }
|
|
|
|
public int? Variant { get; set; }
|
|
|
|
public int? SkinInfoID { get; set; }
|
|
|
|
[Column("Key")]
|
|
public string Key { get; set; }
|
|
|
|
[Column("Value")]
|
|
public string StringValue
|
|
{
|
|
get => Value.ToString();
|
|
set => Value = value;
|
|
}
|
|
|
|
public object Value;
|
|
|
|
public DatabasedSetting(string key, object value)
|
|
{
|
|
Key = key;
|
|
Value = value;
|
|
}
|
|
|
|
/// <summary>
|
|
/// Constructor for derived classes that may require serialisation.
|
|
/// </summary>
|
|
public DatabasedSetting()
|
|
{
|
|
}
|
|
|
|
public override string ToString() => $"{Key}=>{Value}";
|
|
}
|
|
}
|