25 lines
680 B
C#
25 lines
680 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|