demoV/Voroncov2103/Models/Shop.cs
Your Name a0aef6e93b aga
2025-04-04 23:12:08 +03:00

18 lines
341 B
C#

using System;
using System.Collections.Generic;
namespace Voroncov2103.Models;
public partial class Shop
{
public int Id { get; set; }
public string Title { get; set; } = null!;
public string? Address { get; set; }
public int AgentId { get; set; }
public virtual Agent Agent { get; set; } = null!;
}