-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
985ef2e
commit f85394d
Showing
7 changed files
with
118 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
using AwtterSDK.Editor.Enums; | ||
using System; | ||
using System.Collections.Generic; | ||
|
||
namespace AwtterSDK.Editor.Models | ||
{ | ||
[Serializable] | ||
internal class DownloadableContent | ||
{ | ||
public List<BaseModel> Models { get; set; } = new List<BaseModel>(); | ||
public List<Package> Packages { get; set; } = new List<Package>(); | ||
public List<BaseModel> Models = new List<BaseModel>(); | ||
public List<Package> Packages = new List<Package>(); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,19 @@ | ||
namespace AwtterSDK.Editor.Models | ||
using System; | ||
|
||
namespace AwtterSDK.Editor.Models | ||
{ | ||
[Serializable] | ||
public class Package | ||
{ | ||
public int ViewID { get; set; } | ||
public bool Install { get; set; } | ||
public string Name { get; set; } | ||
public string ShortName { get; set; } | ||
public string IconLink { get; set; } | ||
public string Version { get; set; } | ||
public bool AutoDetect { get; set; } = true; | ||
public string DownloadLink { get; set; } | ||
[NonSerialized] | ||
public int ViewID; | ||
[NonSerialized] | ||
public bool Install; | ||
public string Name; | ||
public string ShortName; | ||
public string IconLink; | ||
public string Version; | ||
public bool AutoDetect = true; | ||
public string DownloadLink; | ||
} | ||
} |