18 lines
389 B
C#
18 lines
389 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace blagodat.Models;
|
|||
|
|
|||
|
public partial class Service
|
|||
|
{
|
|||
|
public int Id { get; set; }
|
|||
|
|
|||
|
public string SeviceName { get; set; } = null!;
|
|||
|
|
|||
|
public string CodeService { get; set; } = null!;
|
|||
|
|
|||
|
public int Cost { get; set; }
|
|||
|
|
|||
|
public virtual ICollection<OrderService> OrderServices { get; set; } = new List<OrderService>();
|
|||
|
}
|