2025-02-04 13:58:34 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
|
|
|
|
namespace dmeo040225.Models;
|
|
|
|
|
|
|
|
|
|
public partial class Service
|
|
|
|
|
{
|
|
|
|
|
public int Id { get; set; }
|
|
|
|
|
|
|
|
|
|
public string Name { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public string Code { get; set; } = null!;
|
|
|
|
|
|
|
|
|
|
public string Cost { get; set; } = null!;
|
2025-03-04 12:41:58 +00:00
|
|
|
|
|
|
|
|
|
public virtual ICollection<OrdersService> OrdersServices { get; set; } = new List<OrdersService>();
|
2025-02-04 13:58:34 +00:00
|
|
|
|
}
|