26 lines
635 B
C#
26 lines
635 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace TestApplication.Context;
|
|
|
|
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<ClientService1> ClientService1s { get; set; } = new List<ClientService1>();
|
|
|
|
public virtual ICollection<ServicePhoto> ServicePhotos { get; set; } = new List<ServicePhoto>();
|
|
}
|