start testing cloud service implementation

This commit is contained in:
Вячеслав 2026-02-03 01:54:19 +05:00
parent 3c08d93bc5
commit 2c3f19d7ce
5 changed files with 328 additions and 0 deletions

View 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
}