| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | namespace Azure.Storage.Files.DataLake.Models |
| | 5 | | { |
| | 6 | | /// <summary> |
| | 7 | | /// An Azure Data Lake file system. |
| | 8 | | /// </summary> |
| | 9 | | public class FileSystemItem |
| | 10 | | { |
| | 11 | | /// <summary> |
| | 12 | | /// The name of the file system. |
| | 13 | | /// </summary> |
| 19952 | 14 | | public string Name { get; internal set; } |
| | 15 | |
|
| | 16 | | /// <summary> |
| | 17 | | /// <see cref="FileSystemProperties"/> of the file system. |
| | 18 | | /// </summary> |
| 19862 | 19 | | public FileSystemProperties Properties { get; internal set; } |
| | 20 | |
|
| | 21 | | /// <summary> |
| | 22 | | /// Prevent direct instantiation of FileSystemItem instances. |
| | 23 | | /// You can use DataLakeModelFactory.FileSystemItem instead. |
| | 24 | | /// </summary> |
| 39716 | 25 | | internal FileSystemItem() { } |
| | 26 | | } |
| | 27 | | } |