Demo/Demo3/Models/Pickuppoint.cs

12 lines
215 B
C#
Raw Permalink Normal View History

2024-12-27 10:32:41 +00:00
using System;
using System.Collections.Generic;
namespace Demo3.Models;
public partial class Pickuppoint
{
public int Idpickuppoint { get; set; }
public string Pickuppointname { get; set; } = null!;
}