8 lines
209 B
C#
8 lines
209 B
C#
![]() |
namespace MareSynchronos.MareConfiguration.Models;
|
|||
|
|
|||
|
[Serializable]
|
|||
|
public class SecretKey
|
|||
|
{
|
|||
|
public string FriendlyName { get; set; } = string.Empty;
|
|||
|
public string Key { get; set; } = string.Empty;
|
|||
|
}
|