23 lines
553 B
C#
23 lines
553 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 ServiceProviderModel() { }
|
|
public ServiceProviderModel(Guid id, string name, Guid ownerId)
|
|
{
|
|
Id = id;
|
|
Name = name;
|
|
OwnerId = ownerId;
|
|
}
|
|
}
|
|
}
|