This commit is contained in:
2026-04-17 14:55:32 -04:00
commit bc3ac1d4c9
18017 changed files with 4371742 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
using System.Collections.Generic;
using System.Net.NetworkInformation;
using System.Threading.Tasks;
using DTS.Common.Base;
using DTS.Common.Events;
namespace DTS.Common.Interface
{
public interface INetworkingViewModel : IBaseViewModel
{
INetworkingView View { get; set; }
string SLICE6MulticastAddress { get; set; }
bool SLICE6MulticastAddressHasError { get; }
int SLICE6MulticastCommandPort { get; set; }
int SLICE6MulticastResponsePort { get; set; }
void SetStatus(StatusInfo.StatusState status, string message = "", decimal percentage = -1, int processId = 0);
}
}