(精华)2020年6月26日 C#类库model OptionListInputDTO

52 阅读1分钟
using System.Collections.Generic;

namespace Coldairarrow.Util
{
    public class OptionListInputDTO
    {
        public List<string> selectedValues { get; set; }
        public string q { get; set; }
    }
}