2021-01-07 05:07:36 +00:00
|
|
|
|
// 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;
|
|
|
|
|
using Newtonsoft.Json;
|
2021-01-07 06:41:58 +00:00
|
|
|
|
using Realms;
|
2021-01-07 05:07:36 +00:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Database
|
|
|
|
|
{
|
|
|
|
|
public interface IHasGuidPrimaryKey
|
|
|
|
|
{
|
2021-01-07 06:41:58 +00:00
|
|
|
|
[JsonIgnore]
|
2021-01-08 06:49:11 +00:00
|
|
|
|
[PrimaryKey]
|
2021-10-04 07:26:28 +00:00
|
|
|
|
Guid ID { get; }
|
2021-01-07 05:07:36 +00:00
|
|
|
|
}
|
|
|
|
|
}
|