12 lines
215 B
C#
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!;
|
|
}
|