sodoff/src/Model/UserBadgeCompleteData.cs
YoshiCraft64 995bcd6307
Adventureland Part 1
Adds most of the stuff related to AL. Part 2 will have the mission data itself.
2025-02-09 21:28:44 -06:00

12 lines
253 B
C#

namespace sodoff.Model
{
public class UserBadgeCompleteData
{
public int Id { get; set; }
public int VikingId { get; set; }
public int BadgeId { get; set; }
public virtual Viking? Viking { get; set; }
}
}