12 lines
207 B
C#
12 lines
207 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace demofinish.Models;
|
|||
|
|
|||
|
public partial class Pickuppoint
|
|||
|
{
|
|||
|
public int Pickuppointid { get; set; }
|
|||
|
|
|||
|
public string? Pickupname { get; set; }
|
|||
|
}
|