LANCommander/LANCommander.SDK/Models/Issue.cs
Pat Hartl 76106691eb Add ability to track issues with games
Adds an admin section to view and resolve submitted issues and a menu option in the game context menu in the launcher to report an issue.
2024-08-11 14:48:00 -05:00

14 lines
282 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace LANCommander.SDK.Models
{
public class Issue
{
public string Description { get; set; }
public Guid GameId { get; set; }
}
}