Demo/Demo3/Models/Pickuppoint.cs
2024-12-27 13:32:41 +03:00

12 lines
215 B
C#

using System;
using System.Collections.Generic;
namespace Demo3.Models;
public partial class Pickuppoint
{
public int Idpickuppoint { get; set; }
public string Pickuppointname { get; set; } = null!;
}