Shift-Cipher-C-Sharp/ShiftCipher/ShiftSerializerOptions.cs

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;
}
}