demo_hard/Models/Service.cs

18 lines
336 B
C#
Raw Normal View History

2025-02-04 12:27:32 +00:00
using System;
using System.Collections.Generic;
namespace demo_hard.Models;
public partial class Service
{
public int Id { get; set; }
public int ServiceId { get; set; }
public string ServiceName { get; set; } = null!;
public string ServiceCode { get; set; } = null!;
public int ServiceCost { get; set; }
}