DatabaseRecordUpdateStatus.cs 341 B

12345678910
  1. namespace DiskAccessLibrary.LogicalDiskManager
  2. {
  3. public enum DatabaseRecordUpdateStatus : ushort
  4. {
  5. Active = 0x00, // consistant state
  6. ActivePendingDeletion = 0x01, // about to be deleted, but is still active
  7. PendingActivation = 0x02, // just been created, but it is not yet active
  8. }
  9. }