26 lines
637 B
C#
26 lines
637 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TestApplication.Context;
|
|
|
|
public partial class Service1
|
|
{
|
|
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 decimal? Discount { get; set; }
|
|
|
|
public string? Mainimagepath { get; set; }
|
|
|
|
public virtual ICollection<Clientservice> Clientservices { get; set; } = new List<Clientservice>();
|
|
|
|
public virtual ICollection<Servicephoto1> Servicephoto1s { get; set; } = new List<Servicephoto1>();
|
|
}
|