14 lines
No EOL
249 B
C#
14 lines
No EOL
249 B
C#
namespace MetaforceInstaller.Cloud.Models;
|
|
|
|
public class CloudObject
|
|
{
|
|
public string Name { get; set; }
|
|
public string WebLink { get; set; }
|
|
public CloudObjectType Type { get; set; }
|
|
}
|
|
|
|
public enum CloudObjectType
|
|
{
|
|
Folder,
|
|
File
|
|
} |