16 lines
307 B
C#
16 lines
307 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace demo_hard.Model;
|
|
|
|
public partial class Service
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public string ServiceName { get; set; } = null!;
|
|
|
|
public string ServiceCode { get; set; } = null!;
|
|
|
|
public string ServiceCost { get; set; } = null!;
|
|
}
|