19 lines
563 B
C#
19 lines
563 B
C#
namespace TIAMWebApp.Shared.Application.Models
|
|
{
|
|
public class ServiceProviderModel
|
|
{
|
|
public Guid Id { get; set; }
|
|
public string? Name { get; set; }
|
|
public Guid? OwnerId { get; set; }
|
|
public int CommissionPercent { get; set; }
|
|
public ServiceProviderModel() { }
|
|
public ServiceProviderModel(Guid id, string name, Guid? ownerId, int commissionPercent)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
OwnerId = ownerId;
|
|
CommissionPercent = commissionPercent;
|
|
}
|
|
}
|
|
}
|