23 lines
551 B
C#
23 lines
551 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace ISOParser {
|
|
/// <summary>
|
|
/// Representation of a file in the file system.
|
|
/// </summary>
|
|
public class ISOFileNode : ISONode {
|
|
#region Construction
|
|
|
|
/// <summary>
|
|
/// Constructor.
|
|
/// </summary>
|
|
/// <param name="record">The record to construct from.</param>
|
|
public ISOFileNode( ISONodeRecord record ) : base( record ) {
|
|
// Do Nothing
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
}
|