mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
16 lines
338 B
C#
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; }
|
|
}
|