7 lines
167 B
C#
7 lines
167 B
C#
namespace NimbusFlow.Frontend.Models;
|
|
|
|
public class ServiceType
|
|
{
|
|
public int ServiceTypeId { get; set; }
|
|
public string TypeName { get; set; } = string.Empty;
|
|
} |