mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-02-15 20:54:55 +00:00
fix: fixes access modifiers on interface
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -390,3 +390,4 @@ MigrationBackup/
|
|||||||
FodyWeavers.xsd
|
FodyWeavers.xsd
|
||||||
essentials-framework/Essentials Interfaces/PepperDash_Essentials_Interfaces/PepperDash_Essentials_Interfaces.csproj
|
essentials-framework/Essentials Interfaces/PepperDash_Essentials_Interfaces/PepperDash_Essentials_Interfaces.csproj
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
._.DS_Store
|
||||||
|
|||||||
@@ -31,13 +31,13 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
|||||||
public interface IMobileControlResponseMessage
|
public interface IMobileControlResponseMessage
|
||||||
{
|
{
|
||||||
[JsonProperty("type")]
|
[JsonProperty("type")]
|
||||||
public string Type { get; }
|
string Type { get; }
|
||||||
|
|
||||||
[JsonProperty("clientId")]
|
[JsonProperty("clientId")]
|
||||||
public object ClientId { get; }
|
object ClientId { get; }
|
||||||
|
|
||||||
[JsonProperty("content")]
|
[JsonProperty("content")]
|
||||||
public object Content { get; }
|
object Content { get; }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user