checkpoint

This commit is contained in:
2020-04-30 20:40:52 -04:00
parent 9aa367e9f5
commit abba062f4f
28 changed files with 615 additions and 544 deletions

View File

@@ -20,10 +20,10 @@ namespace Foodsoft.Alpm
public enum ValidationType
{
Unknown = 0,
None = (1 << 0),
MD5Sum = (1 << 1),
SHA256Sum = (1 << 2),
Signature = (1 << 3)
None = 1 << 0,
MD5Sum = 1 << 1,
SHA256Sum = 1 << 2,
Signature = 1 << 3
}
public interface IPackageData : IDisposable
@@ -59,6 +59,6 @@ namespace Foodsoft.Alpm
public ValidationType Validation { get; }
public bool HasScriptlet { get; }
public long DownloadSize { get; }
public Database? DB { get; }
public Database? DB { get; }
}
}