Move JsonIgnore specification to interface

This commit is contained in:
Dean Herbert
2018-11-30 16:39:25 +09:00
parent 58293c3eae
commit e82ad3539b
5 changed files with 2 additions and 8 deletions

View File

@ -2,11 +2,13 @@
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
using System.ComponentModel.DataAnnotations.Schema;
using Newtonsoft.Json;
namespace osu.Game.Database
{
public interface IHasPrimaryKey
{
[JsonIgnore]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
int ID { get; set; }
}