new_demo/Models/Service.cs

16 lines
308 B
C#
Raw Permalink Normal View History

2025-02-11 13:24:30 +00:00
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
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!;
}