2024-08-26 19:12:46 +04:00

16 lines
345 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ServiceStationContracts.HelperModels
{
public class WorkClientModel
{
public int Work_Id { get; set; }
public int Client_Id { get; set; }
public int Point_count { get; set; }
}
}