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