-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Get remote ZFS server implemented (#104)
- Loading branch information
Showing
12 changed files
with
310 additions
and
206 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
136 changes: 0 additions & 136 deletions
136
UET/Redpoint.Uet.Workspace/RemoteZfs/RemoteZfsServer.cs
This file was deleted.
Oops, something went wrong.
14 changes: 14 additions & 0 deletions
14
UET/uet/Commands/Internal/RemoteZfsServer/RemoteZfsSerializerContext.cs
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 |
---|---|---|
@@ -0,0 +1,14 @@ | ||
namespace UET.Commands.Internal.RemoteZfsServer | ||
{ | ||
using System.Text.Json.Serialization; | ||
|
||
[JsonSerializable(typeof(TrueNasQueryOptions))] | ||
[JsonSerializable(typeof(TrueNasQuery))] | ||
[JsonSerializable(typeof(TrueNasSnapshot[]))] | ||
[JsonSerializable(typeof(TrueNasSnapshotClone))] | ||
[JsonSerializable(typeof(RemoteZfsServerConfig))] | ||
[JsonSerializable(typeof(RemoteZfsServerConfigTemplate))] | ||
internal partial class RemoteZfsSerializerContext : JsonSerializerContext | ||
{ | ||
} | ||
} |
Oops, something went wrong.