14 lines
255 B
C#
14 lines
255 B
C#
namespace CorgiCoder.ShiftCipher;
|
|
|
|
public record class ShiftSerializerOptions
|
|
{
|
|
public static readonly ShiftSerializerOptions Default = new();
|
|
|
|
public int offsetCount;
|
|
|
|
public ShiftSerializerOptions()
|
|
{
|
|
offsetCount = 0;
|
|
}
|
|
}
|