devops-lab4/src/CommunicationControl/DevOpsProject.Shared/Models/HiveConnectRequest.cs

16 lines
338 B
C#
Raw Normal View History

2025-02-16 22:15:22 +02:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace DevOpsProject.Shared.Models
{
public class HiveConnectRequest
{
public string HiveIP { get; set; }
public int HivePort { get; set; }
public string HiveID { get; set; }
}
}