add 2E Varazslatok and rename Character to Karakter

This commit is contained in:
2024-07-18 13:45:51 +02:00
parent 1eb35d091e
commit e060c83ef8
15 changed files with 938 additions and 30 deletions
@@ -0,0 +1,19 @@
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
namespace Kemkas.Web.Db.Models;
public class V2KarakterVarazslat
{
[Key]
public Guid Id { get; set; }
public Guid KarakterId { get; set; }
public string VarazslatId { get; set; }
public bool Bekeszitve { get; set; }
[ForeignKey(nameof(KarakterId))]
public V2Karakter Karakter { get; set; }
}