mirror of
https://github.com/kwsch/NHSE.git
synced 2026-03-27 12:04:46 -05:00
10 lines
215 B
C#
10 lines
215 B
C#
namespace NHSE.Core
|
|
{
|
|
/// <summary>
|
|
/// postbox.dat
|
|
/// </summary>
|
|
public sealed class PostBox : EncryptedFilePair
|
|
{
|
|
public PostBox(string folder) : base(folder, "postbox") { }
|
|
}
|
|
} |