13 lines
239 B
C#
13 lines
239 B
C#
|
using ServiceStationDataModels;
|
|||
|
|
|||
|
|
|||
|
namespace ServiceStationContracts.ViewModels
|
|||
|
{
|
|||
|
public class ClientWorkViewModel : IClientWorkModel
|
|||
|
{
|
|||
|
public int ClientId { get; set; }
|
|||
|
|
|||
|
public int WorkId { get; set; }
|
|||
|
}
|
|||
|
}
|