14 lines
277 B
C#
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; }
|
|
}
|
|
}
|