start testing cloud service implementation
This commit is contained in:
parent
3c08d93bc5
commit
2c3f19d7ce
5 changed files with 328 additions and 0 deletions
14
MetaforceInstaller.Cloud/Models/CloudObject.cs
Normal file
14
MetaforceInstaller.Cloud/Models/CloudObject.cs
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
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
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue