16 lines
345 B
C#
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; }
|
|
}
|
|
}
|