FinalDemo/Hard_Demo/Models/Service.cs
2025-03-09 18:02:57 +03:00

18 lines
391 B
C#

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>();
}