16 lines
303 B
C#
16 lines
303 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Demo.EntityModels;
|
|
|
|
public partial class Servicephoto
|
|
{
|
|
public int Id { get; set; }
|
|
|
|
public int Serviceid { get; set; }
|
|
|
|
public string Photopath { get; set; } = null!;
|
|
|
|
public virtual Service Service { get; set; } = null!;
|
|
}
|