mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 15:37:23 +01:00
7 lines
293 B
C#
7 lines
293 B
C#
namespace MareSynchronos.MareConfiguration.Models;
|
|
|
|
public class ServerNotesStorage
|
|
{
|
|
public Dictionary<string, string> UidServerComments { get; set; } = new(StringComparer.Ordinal);
|
|
public Dictionary<string, string> GidServerComments { get; set; } = new(StringComparer.Ordinal);
|
|
}
|