14 lines
352 B
C#

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