namespace DeepDrftContent.FileDatabase.Models; /// /// Represents a key for entries in the file database system. /// Combines a string key with a media vault type for type-safe operations. /// /// The string identifier for the entry /// The media vault type this entry belongs to public record EntryKey(string Key, MediaVaultType Type);