zadanie/Demo1704/Models/Service.cs

26 lines
624 B
C#
Raw Permalink Normal View History

2025-04-17 02:05:48 +00:00
using System;
using System.Collections.Generic;
namespace Demo1704.Models;
public partial class Service
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public decimal Cost { get; set; }
public int Durationinseconds { get; set; }
public string? Description { get; set; }
public double? Discount { get; set; }
public string? Mainimagepath { get; set; }
public virtual ICollection<Clientservice> Clientservices { get; set; } = new List<Clientservice>();
public virtual ICollection<Servicephoto> Servicephotos { get; set; } = new List<Servicephoto>();
}