mirror of
https://github.com/aaru-dps/Aaru.Decryption.git
synced 2025-12-16 19:24:33 +00:00
Move to file scoped namespaces.
This commit is contained in:
19
Enums.cs
19
Enums.cs
@@ -1,12 +1,11 @@
|
||||
namespace Aaru.Decryption
|
||||
{
|
||||
public enum DvdCssKeyClass : byte
|
||||
{
|
||||
DvdCssCppmOrCprm = 0, RewritableSecurityServicesA = 1
|
||||
}
|
||||
namespace Aaru.Decryption;
|
||||
|
||||
public enum DvdCssKeyType
|
||||
{
|
||||
Key1 = 0, Key2 = 1, BusKey = 2
|
||||
}
|
||||
public enum DvdCssKeyClass : byte
|
||||
{
|
||||
DvdCssCppmOrCprm = 0, RewritableSecurityServicesA = 1
|
||||
}
|
||||
|
||||
public enum DvdCssKeyType
|
||||
{
|
||||
Key1 = 0, Key2 = 1, BusKey = 2
|
||||
}
|
||||
Reference in New Issue
Block a user