Files
kemkas-backend/Kemkas.Web/Db/Models/V2KarakterVarazslat.cs
T
morbalint c7c6c626e1 fix nullable warnings (#49)
* fix nullable warnings

* use collection initalizers
2026-04-05 12:48:25 +02:00

22 lines
522 B
C#

using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
using Kemkas.Web.Db.Enums;
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; }
public Osztaly2E Osztaly { get; set; }
[ForeignKey(nameof(KarakterId))]
public V2Karakter Karakter { get; set; } = null!;
}