CommunicationQueryModel.cs 287 Bytes
using HHECS.DAQWebClient.Model;

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