16 lines
345 B
C#
Raw Normal View History

2024-08-20 10:37:39 +04:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-08-26 19:12:46 +04:00
namespace ServiceStationContracts.HelperModels
{
public class WorkClientModel
{
2024-08-20 10:37:39 +04:00
public int Work_Id { get; set; }
public int Client_Id { get; set; }
public int Point_count { get; set; }
}
}