mirror of
https://github.com/Caraxi/mare.client.git
synced 2025-12-12 22:17:22 +01:00
8 lines
210 B
C#
8 lines
210 B
C#
namespace MareSynchronos.MareConfiguration.Models;
|
|
|
|
[Serializable]
|
|
public class SecretKey
|
|
{
|
|
public string Key { get; set; } = string.Empty;
|
|
public string FriendlyName { get; set; } = string.Empty;
|
|
}
|