CommunicationQueryModel.cs 288 Bytes
using HHECS.DAQWebClient.Models;

namespace HHECS.DAQWebClient.ViewModel
{
    public class CommunicationQueryModel
    {
        public string? Code { get; set; }
        public string? Name { get; set; }
        public CommunicationTypeConst? CommunicationType { get; set; }
    }
}