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.
14 lines
282 B
C#
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; }
|
|
}
|
|
}
|