mirror of
https://github.com/PepperDash/Essentials.git
synced 2026-04-12 03:57:27 +00:00
fix: fixes access modifiers on interface
This commit is contained in:
parent
9d71810e04
commit
a5de8b14d9
2 changed files with 4 additions and 3 deletions
|
|
@ -31,13 +31,13 @@ namespace PepperDash.Essentials.Core.DeviceTypeInterfaces
|
|||
public interface IMobileControlResponseMessage
|
||||
{
|
||||
[JsonProperty("type")]
|
||||
public string Type { get; }
|
||||
string Type { get; }
|
||||
|
||||
[JsonProperty("clientId")]
|
||||
public object ClientId { get; }
|
||||
object ClientId { get; }
|
||||
|
||||
[JsonProperty("content")]
|
||||
public object Content { get; }
|
||||
object Content { get; }
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue