mirror of
https://github.com/Alee14/OpenHacknet.git
synced 2025-01-22 09:12:44 -05:00
10 lines
No EOL
181 B
C#
10 lines
No EOL
181 B
C#
using System.Collections.Generic;
|
|
|
|
namespace Hacknet
|
|
{
|
|
internal struct MessageBoardThread
|
|
{
|
|
public string id;
|
|
public List<MessageBoardPost> posts;
|
|
}
|
|
} |