sodoff/src/Model/AchievementPoints.cs
2025-07-17 19:17:16 +00:00

16 lines
338 B
C#

using System.ComponentModel.DataAnnotations;
using System.Text.Json.Serialization;
namespace sodoff.Model;
public class AchievementPoints {
[JsonIgnore]
public int VikingId { get; set; }
public int Type { get; set; }
public int Value { get; set; }
[JsonIgnore]
public virtual Viking? Viking { get; set; }
}