mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-02-13 13:45:57 +00:00
13 lines
365 B
C#
13 lines
365 B
C#
namespace BinaryObjectScanner.Models.AACS
|
|
{
|
|
/// <summary>
|
|
/// This record type is undocumented but found in real media key blocks
|
|
/// </summary>
|
|
public sealed class CopyrightRecord : Record
|
|
{
|
|
/// <summary>
|
|
/// Null-terminated ASCII string representing the copyright
|
|
/// </summary>
|
|
public string Copyright;
|
|
}
|
|
} |