13 lines
284 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationContracts.SearchModels {
public class WorkClientSearchModel {
public int client_id { get; set; }
public int work_id { get; set; }
}
}