Files
DP44/Common/DTS.Common/.svn/pristine/7b/7b8850680090addf3f6f4db1bca26d6d5f7c2343.svn-base

19 lines
652 B
Plaintext
Raw Normal View History

2026-04-17 14:55:32 -04:00
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);
}
}