demo_hard/Model/Service.cs

16 lines
307 B
C#
Raw Normal View History

2025-02-05 10:11:36 +00:00
using System;
using System.Collections.Generic;
2025-02-11 13:17:16 +00:00
namespace demo_hard.Model;
2025-02-05 10:11:36 +00:00
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!;
}