Files
BWPM/BlazorApp - Kopie (4)/Models/ViewAnsprechpartner.cs

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; }
}
}