mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
19 lines
457 B
C#
19 lines
457 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace sodoff.Model
|
|
{
|
|
public class SceneData
|
|
{
|
|
[Key]
|
|
[JsonIgnore]
|
|
public int Id { get; set; }
|
|
public int VikingId { get; set; }
|
|
public string SceneName { get; set; } = null!;
|
|
public string XmlData { get; set; } = null!;
|
|
|
|
[JsonIgnore]
|
|
public virtual Viking Viking { get; set; } = null!;
|
|
}
|
|
}
|