demko_v/Models/Shop.cs
2025-04-16 00:00:02 +03:00

16 lines
280 B
C#

using System;
using System.Collections.Generic;
namespace demko_v.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; }
}