mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-21 17:24:30 -05:00
9 lines
185 B
C#
9 lines
185 B
C#
namespace NHSE.Core;
|
|
|
|
/// <summary>
|
|
/// postbox.dat
|
|
/// </summary>
|
|
public sealed class PostBox : EncryptedFilePair
|
|
{
|
|
public PostBox(string folder) : base(folder, "postbox") { }
|
|
} |