mirror of
https://github.com/lantean-code/qbtmud.git
synced 2025-10-22 20:42:24 +00:00
12 lines
236 B
C#
12 lines
236 B
C#
namespace Lantean.QBTMud.Models
|
|
{
|
|
public record PeerList
|
|
{
|
|
public PeerList(Dictionary<string, Peer> peers)
|
|
{
|
|
Peers = peers;
|
|
}
|
|
|
|
public Dictionary<string, Peer> Peers { get; }
|
|
}
|
|
} |