mirror of
https://github.com/SoDOff-Project/sodoff.git
synced 2025-10-11 08:18:49 -07:00
17 lines
355 B
C#
17 lines
355 B
C#
using System.Text.Json.Serialization;
|
|
|
|
namespace sodoff.Model
|
|
{
|
|
public class UserBadgeCompleteData
|
|
{
|
|
[JsonIgnore]
|
|
public int Id { get; set; }
|
|
[JsonIgnore]
|
|
public int VikingId { get; set; }
|
|
public int BadgeId { get; set; }
|
|
|
|
[JsonIgnore]
|
|
public virtual Viking? Viking { get; set; }
|
|
}
|
|
}
|