Remove setter from IHasGuidPrimaryKey interface

This commit is contained in:
Dean Herbert
2021-10-04 16:26:28 +09:00
parent 916342c837
commit 3c15ef720f
2 changed files with 2 additions and 2 deletions

View File

@ -11,6 +11,6 @@ namespace osu.Game.Database
{
[JsonIgnore]
[PrimaryKey]
Guid ID { get; set; }
Guid ID { get; }
}
}