demka/demofinish/Models/Pickuppoint.cs

12 lines
207 B
C#
Raw Normal View History

2024-12-26 13:15:57 +00:00
using System;
using System.Collections.Generic;
namespace demofinish.Models;
public partial class Pickuppoint
{
public int Pickuppointid { get; set; }
public string? Pickupname { get; set; }
}