mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-11-27 10:06:53 -08: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; }
|
|
}
|