Files
BWPM/BlazorApp/Models/ViewAnsprechpartner.cs
2021-08-07 09:44:37 +02:00

14 lines
277 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace BlazorApp.Models
{
public class ViewAnsprechpartner
{
public int id { get; set; }
public string namevorname { get; set; }
}
}