18 lines
405 B
C#
18 lines
405 B
C#
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!;
|
|
|
|
public virtual ICollection<OrdersService> OrdersServices { get; set; } = new List<OrdersService>();
|
|
}
|