forked from chatop2020/AKStream
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'chatop2020:master' into master
- Loading branch information
Showing
9 changed files
with
260 additions
and
4 deletions.
There are no files selected for viewing
Binary file not shown.
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
using System; | ||
|
||
namespace LibCommon.Structs.Other; | ||
|
||
[Serializable] | ||
public class ReqPushStreamGetIP | ||
{ | ||
private string? _deviceId; | ||
|
||
/// <summary> | ||
/// sip设备id | ||
/// </summary> | ||
public string? DeviceId | ||
{ | ||
get => _deviceId; | ||
set => _deviceId = value; | ||
} | ||
} |
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,28 @@ | ||
using System; | ||
|
||
namespace LibCommon.Structs.Other; | ||
|
||
[Serializable] | ||
public class ResPushStreamGetIP | ||
{ | ||
private string? _ipAddress; | ||
private string? _deviceId; | ||
|
||
/// <summary> | ||
/// 设备对应的流媒体服务器ip地址 | ||
/// </summary> | ||
public string? IpAddress | ||
{ | ||
get => _ipAddress; | ||
set => _ipAddress = value; | ||
} | ||
|
||
/// <summary> | ||
/// sip设备id | ||
/// </summary> | ||
public string? DeviceId | ||
{ | ||
get => _deviceId; | ||
set => _deviceId = value; | ||
} | ||
} |
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