FinalDemo/Hard_Demo/Models/Service.cs

18 lines
391 B
C#
Raw Normal View History

2025-03-09 15:02:57 +00:00
using System;
using System.Collections.Generic;
namespace Hard_Demo.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!;
public virtual ICollection<Order> Idorders { get; set; } = new List<Order>();
}