Update C# db models

This commit is contained in:
Rory&
2026-07-03 15:51:18 +02:00
parent 26485273c7
commit 066e9863d6
15 changed files with 182 additions and 177 deletions
@@ -55,7 +55,7 @@ public partial class Sticker
[InverseProperty("Stickers")]
public virtual User? User { get; set; }
[ForeignKey("StickersId")]
[ForeignKey("StickerId")]
[InverseProperty("Stickers")]
public virtual ICollection<Message> Messages { get; set; } = new List<Message>();
}