aes70
Version:
A controller library for the AES70 protocol.
23 lines (21 loc) • 431 B
JavaScript
/*
* This file has been generated.
*/
export class OcaLibVolIdentifier {
/**
* Unique identifier of a library volume within the device.
* @class OcaLibVolIdentifier
*/
constructor(Library, ID) {
/**
* Library that holds the LibVol in question.
* @type number
*/
this.Library = Library;
/**
* ID of LibVol within the given library.
* @type number
*/
this.ID = ID;
}
}