13 lines
284 B
C#
Raw Normal View History

2024-08-26 19:12:46 +04:00
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; }
2024-08-28 17:28:49 +04:00
public int work_id { get; set; }
2024-08-26 19:12:46 +04:00
}
}